Two functions superimposed on each other.
1 回表示 (過去 30 日間)
古いコメントを表示
Suppose I have two functions, say y = sin(t) and y = sin( t + pi/4) and I want to make them start at the same point. How can this be done?
2 件のコメント
採用された回答
Azzi Abdelmalek
2012 年 10 月 18 日
t=0:0.1:10
plot(t, sin(t))
hold on ,
plot(t+pi/4,sin( t + pi/4) )
0 件のコメント
その他の回答 (1 件)
Matt J
2012 年 10 月 18 日
Change y2 to y2 = sin(t +2000 + pi/4)
now they will both start at t=2000
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Digital Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!