how to plot a complex no in complex plane?
显示 更早的评论
we have a complex number with its real and imaginary parts with us.How to plot the phasor in complex plane using matlab codes?
回答(1 个)
Walter Roberson
2021-8-6
plot(data)
can be used. It is equivalent to
plot(real(data), imag(data))
类别
在 帮助中心 和 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!