MATLAB: How to 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

amit40639

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

Best Answer

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