How can I write matlab code for The finite region bounded by the plane z = x , x + z = 8, z = y , y = 8 and z = 0 in matlab. I have downloaded ViewSolid
4 views (last 30 days)
Show older comments
Amit Kumar
on 22 Dec 2020
How can I write matlab code for The finite region bounded by the plane z = x , x + z = 8, z = y , y = 8 and z = 0 in matlab. I have downloaded ViewSolid
0 Comments
Accepted Answer
SHREYAS KARTHIKEYA
on 28 Dec 2020
clc
clear
syms x y z real
xa=z;xb=8-z;
ya=z+0*x;yb=8+0*x;
za=0;zb=4;
int(int(int(1+0*x,xa,xb),y,ya,yb),z,za,zb)
viewSolidone(x,xa,xb,y,ya,yb,z,za,zb)
4 Comments
More Answers (3)
KOKILA GULATI
on 2 Feb 2021
clc
clear
syms x y z real
xa=z;xb=8-z;
ya=z+0*x;yb=8+0*x;
za=0;zb=8;
I = int(int(int(1+0*x,xa,xb),y,ya,yb),z,za,zb);
disp(I);
Dev Arora
on 18 Dec 2021
clc
clear
syms x y z real
xa=z;xb=8-z;
ya=z+0*x;yb=8+0*x;
za=0;zb=8;
I = int(int(int(1+0*x,xa,xb),y,ya,yb),z,za,zb);
disp(I);
0 Comments
Dev Arora
on 18 Dec 2021
clc
clear
syms x y z real
xa=z;xb=8-z;
ya=z+0*x;yb=8+0*x;
za=0;zb=4;
int(int(int(1+0*x,xa,xb),y,ya,yb),z,za,zb)
viewSolidone(x,xa,xb,y,ya,yb,z,za,zb)
0 Comments
See Also
Categories
Find more on Symbolic Math Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!