Plot solutions to a multi variable system: x + 2y + 3z = 4

2 次查看(过去 30 天)
Not sure how to do this, I tried fplot but nothing showed up. It should look like a tilted plane

采纳的回答

Rafael Hernandez-Walls
if using mesh, and plot3
[y,z]=meshgrid(-4:.1:4,-4:.1:4);
x=4-3*z-2*y;
mesh(y,z,x)
plot3(x,y,z,'o');

更多回答(1 个)

madhan ravi
madhan ravi 2020-6-14

类别

Help CenterFile Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by