Rotating a plot?

In the figure you have plotted, click 'View'->'Camera Toolbar'. Use the Roll Camera icon, and that should allow you to rotate your plot.

EDIT: You can also use the camroll function to do this programatically

camroll(90)

Note, this actually rotates the camera looking at the plot clockwise, not the plot itself. So if you want to rotate the plot 90 degrees counter-clockwise, you will need to rotate the camera 90 degrees clockwise.


Another solution is function view:

view([90 90])

In my opinion this is better solution because there is a problem with labels when one uses camroll function. See code below:

y = rand(1,10);
subplot(211)
plot(1:10,y)
xlabel('x')
ylabel('y')
view([-90 90])
subplot(212)
plot(1:10,y)
xlabel('x')
ylabel('y')
camroll(90)

Tags:

Matlab