plotting complex exponential function
76 次查看(过去 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!