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

조회 수: 1 (최근 30일)
Risk
Risk 2020년 6월 14일
댓글: Catalytic 2020년 6월 15일
Not sure how to do this, I tried fplot but nothing showed up. It should look like a tilted plane

채택된 답변

Rafael Hernandez-Walls
Rafael Hernandez-Walls 2020년 6월 14일
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일
doc fimplicit3

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by