Flip an Array Over 45 degree Axis
Mostrar comentarios más antiguos
I need to flip this plot(only the blue line) over a 45 degree axis so that the part of the parabola touching the x axis will be then plotted on the y axis, and the parabola edge touching the y axis will be on the x axis. I have no idea what is going wrong I have been trying everything from rotating to flipping to plotting y vs x instead. Any suggestions would be greatly appreciated.
1 comentario
José-Luis
el 12 de Jul. de 2014
Which plot?
Respuestas (1)
Image Analyst
el 12 de Jul. de 2014
How about instead of
plot(x,y);
do
plot(y, x);
Categorías
Más información sobre Line 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!