Using MATLAB Generate and plot the function x2(t) = sin (30πt), for t ranging from -1 to 1 in 0.001 increments. Use proper axes labels with title.
`Hey,
Note: Brother if you have any queries related the answer please do comment. I would be very happy to resolve all your queries.
clc% helps in clearing screen
clear all% helps in clearing history
close all% helps in closing files if any
t=-1:0.001:1;
x2=sin(30*pi*t);
plot(t,x2);
xlabel('Time');
ylabel('x2(t)');
title('Plot of x2(t)');

Kindly revert for any queries
Thanks.
Using MATLAB Generate and plot the function x2(t) = sin (30πt), for t ranging from -1...