plotting unit step function
    9 ビュー (過去 30 日間)
  
       古いコメントを表示
    
Hi am trying to plot this unit step function u(t-1)-u(t-2)+u(2-t)-u(3-t)+u(t-3)-u(t-4) and really not sure where to start. I have tried doing a laplace transformations with no success, and setting boundary limits with nothing but errors and have even tried to use heaviside function.
Thank you
0 件のコメント
採用された回答
  Rick Rosson
    
 2012 年 4 月 13 日
           Fs = 100;
   dt = 1/Fs;
   StartTime = -5;
   StopTime = 15;
   t = StartTime:dt:StopTime-dt;
   x = (t>1) - (t>2) + (t<2) - (t<3) + (t>3) - (t>4);
   figure;
   stairs(t,x);
   ylim([-1.2 1.2]);
0 件のコメント
その他の回答 (1 件)
  Richard Brown
      
 2012 年 4 月 13 日
        Or as an anonymous function:
f = @(t) (t > 1) - (t > 2) + (t < 2) - (t < 3) + (t > 3) - (t > 4);
t = linspace(-5, 5, 200);
stairs(t, f(t));
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


