Plot solutions to a multi variable system: x + 2y + 3z = 4
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Risk
el 14 de Jun. de 2020
Comentada: Catalytic
el 15 de Jun. de 2020
Not sure how to do this, I tried fplot but nothing showed up. It should look like a tilted plane
0 comentarios
Respuesta aceptada
Rafael Hernandez-Walls
el 14 de Jun. de 2020
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');
Más respuestas (1)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!