Graphing specific function over time
古いコメントを表示
How can I graph the function da=0.5+0.425*sin((2*pi*60)*t) and vary t from 0 to 10 seconds?
採用された回答
その他の回答 (1 件)
Walter Roberson
2023 年 3 月 10 日
da = @(t)0.5+0.425*sin((2*pi*60)*t);
fplot(da, [0 10])
コミュニティ
その他の回答 パワー エレクトロニクス コミュニティ
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
