I want to know how to plot the intersection of a 3D picture with a plane.

1 Ansicht (letzte 30 Tage)
I want to know how to plot the intersection of a 3D picture with a plane.
For example, my matlab code is
x=-10:0.1:10;
y=x;
[x,y]=meshgrid(x,y);
z=1-5*x.^2+3*y.^2+7*x.*y+4*x-9*y;
mesh(x,y)
I want to look at the intersecting line with z=c or z=ax+by(c,a,b are constant)
what matlab code can implement?

Akzeptierte Antwort

Star Strider
Star Strider am 19 Mai 2019
I am not certain what you want.
Try these:
x=-10:0.1:10;
y=x;
[x,y]=meshgrid(x,y);
z=1-5*x.^2+3*y.^2+7*x.*y+4*x-9*y;
figure
c = 1;
mesh(x,y,z)
hold on
contour3(x,y,z, [c,c], 'LineWidth',2, 'Color','k') % One Contour Level At ‘c’
hold off
figure
c = 20*x+15*y;
mesh(x,y,z)
hold on
plot3(x,y,c, 'LineWidth',2, 'Color','g') % Plane Defined By ‘c’
hold off
I want to know how to plot the intersection of a 3D picture with a plane - 2019 05 18.png
Experiment to get different results.
  4 Kommentare
seth wade
seth wade am 19 Mai 2019
And i have a question, what's the meaning of [c,c] in counter3
Star Strider
Star Strider am 19 Mai 2019
That defines one level of the contour. See Contours at One Level (link) for details.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Contour Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by