How to plot a complex function ?
28 次查看(过去 30 天)
显示 更早的评论
Hello, I have a complex function like this f : z -> f(z) and I wonder how can I plot this because z is complex and f(z) as well. Any suggestions ? Thank you very much !
0 个评论
回答(1 个)
Star Strider
2017-10-17
It depends on what you want to do.
To plot the real and imaginary parts as a function of ‘z’:
plot(z, real(f(z)), z, imag(f(z)))
to plot the real and imaginary parts against each other:
plot(real(f(z)), imag(f(z)))
2 个评论
Star Strider
2017-10-17
You did not say how you want to plot them.
Try this:
plot(real(z), real(f(z)), imag(z), imag(f(z)))
or some version of it to get the result you want.
You can also plot the absolute values (magnitudes) against each other with the abs function, and the phase angles with the angle function.
The possibilities are myriad, if not infinite.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Scatter Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!