i want to create 2 sinusoid signals and adding it then create time domain of it first signal amplitude 110 50hz second signal amplitude 10 250hz
4 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Birdman
2018 年 3 月 29 日
t = (0:0.001:1);
y1 = 110*sin(2*pi*50*t);
y2 = 10*sin(2*pi*250*t);
plot(t,y1,t,y2)
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multirate Signal Processing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!