how to plot a complex no in complex plane?
Mostrar comentarios más antiguos
we have a complex number with its real and imaginary parts with us.How to plot the phasor in complex plane using matlab codes?
Respuestas (1)
Walter Roberson
el 6 de Ag. de 2021
plot(data)
can be used. It is equivalent to
plot(real(data), imag(data))
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!