Wednesday, November 17, 2010

0

MATLAB program for Step Wave Continous generation

  • Wednesday, November 17, 2010
  • tech
  • Share
  • 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');

    OUTPUT 


    0 Responses to “MATLAB program for Step Wave Continous generation”

    Post a Comment