MATLAB program for Step Wave Continous generation
PROGRAM
% step continous
n=ones(1,20); % creates an array of 20 elements with value 1;
x=0:1:19;
plot(x,n); %continous step wave
title('continous step');
xlabel('time');
ylabel('amplitude');
n=ones(1,20); % creates an array of 20 elements with value 1;
x=0:1:19;
plot(x,n); %continous step wave
title('continous step');
xlabel('time');
ylabel('amplitude');
OUTPUT
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjrNhw93LHPyD6MAfmOrb_4GoRGl9AR9Xha2r8CTlDDdfdZ1QdJapeyDd2RpXN8P5ruNLbMkKwbFVfN0ZYTGY2NwLrY4qjrm2qWGwnBtifxxAM6wZW6W9ww1xvkVOFaMvDLzTYwCrSR0PLh/s400/stepc.jpg)
No comments:
Post a Comment