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)
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

Accepted Answer

SHREYAS KARTHIKEYA
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

Sign in to comment.

More Answers (3)

KOKILA GULATI
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
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);

Dev Arora
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)
ans = 
viewSolidone(x,xa,xb,y,ya,yb,z,za,zb)
Unrecognized function or variable 'viewSolidone'.

Categories

Find more on Symbolic Math Toolbox in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!