how to plot given plane in matlab (It will be 3d)

 채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 5일
편집: Ameer Hamza 2020년 10월 5일

0 개 추천

A simple solution is to use fimplicit3
f = @(x, y, z) 4.7243+1.1351*x + 3.1351*z - y;
fimplicit3(f);
An alternative solution using surf()
[X, Z] = meshgrid(linspace(-5, 5));
Y = 4.7243+1.1351*X + 3.1351*Z;
surf(X, Y, Z)
shading interp

댓글 수: 2

thanks i think it worked
I am glad to be of help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

질문:

2020년 10월 5일

댓글:

2020년 10월 5일

Community Treasure Hunt

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

Start Hunting!

Translated by