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 件のコメント

Ambar Dixit
Ambar Dixit 2020 年 10 月 5 日
thanks i think it worked
Ameer Hamza
Ameer Hamza 2020 年 10 月 5 日
I am glad to be of help!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Community Treasure Hunt

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

Start Hunting!

Translated by