Generating a 6 second sine wave?
古いコメントを表示
I'm supposed to generate a 6 seconds long sine wave that has amplitude of 1.0, frequency of 400Hz at a 8KHz sampling frequency, but I'm not sure how to control how long the wave lasts for.
採用された回答
その他の回答 (1 件)
Image Analyst
2014 年 10 月 7 日
Hint: 6 seconds at 8000 times per second means that the vector (row array) will be 48000 elements long.
sineWave = sin(2*pi*freq*timeVector);
See if that's enough hints.
3 件のコメント
Image Analyst
2014 年 10 月 8 日
Well it looks like Azzi did it all for you. Though if you ever want to change the amplitude you should use
y = Amp * sin(2*pi*f*t);
Dick Rusell
2014 年 10 月 10 日
Akpabio Ekpewoh
2019 年 7 月 11 日
Yes, just use the icons on the top of the plot
カテゴリ
ヘルプ センター および File Exchange で Creating, Deleting, and Querying Graphics Objects についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!