Wednesday, November 17, 2010
0
matlab program for Step Wave Discrete
PROGRAM
% step discrete
n=ones(1,20); % creates an array of 20 elements with value 1;
x=0:1:19;
stem(x,n); %discrete 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;
stem(x,n); %discrete step wave
title('continous step');
xlabel('time');
ylabel('amplitude');
This post was written by: noufel n backer
Subscribe to:
Post Comments (Atom)
0 Responses to “matlab program for Step Wave Discrete”
Post a Comment