How to fill a 1024 point array with two cycles of a cosine wave?
1 回表示 (過去 30 日間)
古いコメントを表示
How to fill a 1024 point array with two cycles of a cosine wave?
0 件のコメント
採用された回答
Luna
2019 年 2 月 11 日
Example:
xData = linspace(0,4*pi,1024);
yData = cos(xData);
figure;
plot(xData,yData);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!