I have been writing a script in Matlab that plots 3D images, by using plot3
.
The axis are run in this interval:
- x: [1 -> 0]
- y: [0.01 -> 0]
- z: [0 -> 1]
The result is provided in this figure:
Now I would like to change the orientation of my axis, and replot the figure with this axis orientation:
- x: [0 -> 1]
- y: [0 -> 0.01]
- z: [0 -> 1]
How could I do this?
Thanx!