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!