Question: Make the examples as t , t - 2 , t + 2 , t * 2 , t / 2 . clear

Make the examples as "t, t-2, t+2, t*2, t/2".
clear all
close all
t=0:10;
x=[01210120121];
subplot(3,1,1,1)
plot(t,x)
title('Signal')
xlabel('time')
ylabel('amplitude')
grid on;
%xis([-2804]);
subplot(3,1,2)
plot(t+2,x,'b')
title('scroll right')
xlabel('time')
ylabel('amplitude')
grid on;
%axis([-2804]);
subplot(3,1,3)
plot(t-2,x,'r')
title('scroll left')
xlabel('time')
ylabel('amplitude')
grid on;
%axis([-2804]);

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!