plotting complex exponential function
74 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
その他の回答 (1 件)
James Tursa
2020 年 11 月 29 日
編集済み: James Tursa
2020 年 11 月 29 日
E.g., maybe this is what you need
y = 1*exp( -i20 *pi * t ) + 4*exp( i20 * pi * t );
plot(t,y);
Although it is not clear what i20 is. A variable name? Or is this supposed to be i*20? In which case you might want to plot real(y) instead of y.
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!