I wrote a script in Matlab that displays three-dimensional images using plot3.
The axis starts in this interval:
- x: [1 → 0]
- y: [0.01 → 0]
- z: [0 → 1]
The result is shown in the figure:

Now I would like to change the orientation of my axis and copy the shape with this axis orientation:
- x: [0 → 1]
- y: [0 → 0.01]
- z: [0 → 1]
How can i do this?
Thanx!
source
share