A the surface x->-10:10, y->-10:10, z=0 to a plot of a curve in 3d (using plot3 in Matlab 2014b)?

4 Ansichten (letzte 30 Tage)

I have a curve in 3-dimensions, corresponding to

     xx=0:9; yy=[-5:0 -1:-1:-4]; zz=[1:5 4:-1:0]; 
     plot3(xx,yy,zz,'-o'); 

I wish to plot a semi-transparent surface corrseponding to x->-10:10, y->-10:10, z=0

How do I add this to the plot? I use Matlab 2014b.

In addition, is there a way to plot such that the axes and their origin will show up in the middle of the figure, and not in the sides?

Thank you!

Akzeptierte Antwort

Star Strider
Star Strider am 21 Okt. 2018
Try this:
xx=0:9;
yy=[-5:0 -1:-1:-4];
zz=[1:5 4:-1:0];
figure
plot3(xx,yy,zz,'-o');
hold on
patch([-10 10 10 -10], [10 10 -10 -10], 'r', 'FaceAlpha',0.2)
hold off
grid on
‘... is there a way to plot such that the axes and their origin will show up in the middle of the figure, and not in the sides?’
Not in R2014b. I believe that was added in R2017b.
  4 Kommentare
jonas
jonas am 21 Okt. 2018
Bearbeitet: jonas am 21 Okt. 2018
Just to add:
"In addition, is there a way to plot such that the axes and their origin will show up in the middle of the figure, and not in the sides?"
ax = gca;
ax.ZRuler.FirstCrossoverValue = 0;
ax.ZRuler.SecondCrossoverValue = 0;
ax.XRuler.FirstCrossoverValue = 0;
ax.XRuler.SecondCrossoverValue = 0;
ax.YRuler.FirstCrossoverValue = 0;
ax.YRuler.SecondCrossoverValue = 0;
box on

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by