Starting with the ramp signal r(t) and unit step signal u(t) given below, please write the codes to plot the following transformed versions (a-f):
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Starting with the ramp signal 𝑟(𝑡) and unit step signal 𝑢(𝑡) given below, please write the codes to plot the following transformed versions (a to f): (18 points)
t=-10:10;
plot(t,t);
grid on
xlabel('Samples')
ylabel('Amplitude')
title('Ramp')
0 Kommentare
Antworten (1)
Sulaymon Eshkabilov
am 18 Feb. 2024
t=-10:10;
figure
plot(t,t);
grid on
xlabel('Samples')
ylabel('Amplitude')
title('Ramp')
figure
t2=[zeros(1,100), ones(1,100)];
t1=linspace(-10,10, numel(t2));
plot(t1,t2);
grid on
xlabel('Samples')
ylabel('Amplitude')
title('Unit Step')
% Continue in this way ....
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!