How to create a polar plot?
Mostrar comentarios más antiguos
Hi All,
I have a signal (a complex tall vector) and I'd like to creat polar plots of it with a line connecting points that are adjacent in time.
the signal is attached and any thoughts on that would be greatly appreciated.
This is what I did so far, but seems something is wrong
x = real(S);
y = imag(S);
rho = sqrt(x.^2+y.^2)
theta = atan(y./x)
polarplot(theta, rho)
and I got this

I don't underestand why is everything in the right half plane.
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Scatter 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!
