viewSolid.m and viewSolidone.m where to get?

 Accepted Answer

Hello, viewSolid and viewSolidone are not functions shipped with MATLAB. It looks like viewSolid can be found at the following link:
I could not find viewSolidone.

12 Comments

it will help with the two variable system but how to visualize the 3 variable system
thnx sir..it was the one i was looking for!
Still i am getting error
What error are you encountering? Did you download the code from the two links given above?
it worked for me, thanks
how to download the code ??
how do i import this to matlab online
Download the files to your desktop, and use MATLAB Connector to upload them to matlab online.

Sign in to comment.

More Answers (4)

syms x y z
xa =-sqrt(3);
xb= sqrt(3);
ya=-sqrt(3-x^2);
y(b)=sqrt(3-x^2);
za=x^2+y^2;
zb=sqrt(6-x^2-y^2);
I=int(int(int1+0*z,z,za,zb),y,ya,yb),x,xa,xb);
viewSolidone(z,za,zb,y,ya,yb,x,xa,xb)

1 Comment

https://www.mathworks.com/matlabcentral/answers/421255-hi-i-m-trying-to-create-a-3-d-solid-volume-graph-using-viewsolid-but-when-i-m-using-viewsolid-or-vi#comment_1898015

Sign in to comment.

syms x y z;
syms x y z;
int(int((x+y)/4,y,x,x/2),x,1,2);
ac=viewSolid(z,0+0*x+0*y,(x+y)/4,y,x,x/2,x,1,2);
Unrecognized function or variable 'viewSolid'.
disp(ac)
Just go to home > add on> get add-on > search for 'viewsolodone' and 'viewSolid' and install it > now run the code

Categories

Find more on Programming 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!