Filter löschen
Filter löschen

How to interchange Z and Y axes direction in MATLAB?

8 Ansichten (letzte 30 Tage)
Lynn Zahari
Lynn Zahari am 11 Okt. 2018
Beantwortet: atek am 19 Dez. 2020
i have 3D plot in matlab lets say i use example isosurface from matlab help [x,y,z,v] = flow; p = patch(isosurface(x,y,z,v,-3)); isonormals(x,y,z,v,p) set(p,'FaceColor','red','EdgeColor','none'); daspect([1 1 1]) view(3); axis tight camlight lighting gouraud xlabel('x-axis');ylabel('y-axis');zlabel('z-axis'); but the problem is that z axis is in vertical direction, and x & y is horizontal direction. i want to interchange so that x and z is horizontal direction and y is in vertical direction. well i can manipulate data dan axis label, but i prefer to do without manipulate the data. is there anyone knows how to do it? thanks
  3 Kommentare
Adam
Adam am 11 Okt. 2018
Why not just rotate the plot to the suitable angle? e.g.
doc view
If you still want the z axis to be the z axis despite being horizontal.
Image Analyst
Image Analyst am 11 Okt. 2018
Shouldn't these be answers down below in the official Answers section? They sound like answers to me.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

atek
atek am 19 Dez. 2020
Interchange the order of variables you are plotting, i.e. instead of plotfx(x,y,z) use plotfx(z,x,y)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2015b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by