How can I plot a 3D graph perspectivly?

Is it possible that I set the axis of the 3D graph more "perspective"? That's to say when the object is colser to the viewer, it looks bigger. And parallel lines in 3D may looks un-parallel. The following figure is plotted in Origin, and obviously it looks better.

 Akzeptierte Antwort

Weitere Antworten (2)

KSSV
KSSV am 22 Jul. 2016

0 Stimmen

You have to play around with xtick, ytick, ztick and view angle...it is very much possible.....
Allen Benjamin
Allen Benjamin am 22 Jul. 2016

0 Stimmen

You can use the axes projection property:
ax = axes;
ax.Projection = 'perspective';

1 Kommentar

KAE
KAE am 30 Jul. 2019
Bearbeitet: KAE am 30 Jul. 2019
The marker sizes don't change for me with 'perspective'.
figure;
plot3(rand(1,10), rand(1,10), rand(1,10), 'ko')
ax = gca;
ax.Projection = 'perspective';

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Axes Appearance finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 22 Jul. 2016

Bearbeitet:

KAE
am 30 Jul. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by