Plotting the tone frequencies
古いコメントを表示
I am in the process of creating sound. I've created the tone frequencies, but I'll need to show it on a diagram (ex. plot), but it keep giving me error, when using the:
plot(s1+s2);
What am I doing wrong?
The two first plots doesn't give any results, it's just blue.
figure
subplot(3,1,1);
plot(t, s1);
xlim([0 1E+3]);
grid
subplot(3,1,2);
plot(t, s2);
xlim([0 1E+3]);
grid
subplot(3,1,3);
plot(t, s1 + s2);
xlim([0 1E+3]);
grid
2 件のコメント
Cris LaPierre
2020 年 10 月 4 日
It's always helpful to share the full error message as well.
When I run the code you shared with the plot command at the end, it generates a warning, but the plot appears. Is that what you see?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Measurements and Spatial Audio についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!