viewSolid.m and viewSolidone.m where to get?
855 次查看(过去 30 天)
显示 更早的评论
to visualize triple and double integrals.
0 个评论
采纳的回答
Mary Abbott
2017-11-1
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 个评论
Walter Roberson
2021-4-28
Download the files to your desktop, and use MATLAB Connector to upload them to matlab online.
Walter Roberson
2021-12-27
编辑:Walter Roberson
2021-12-27
更多回答(4 个)
Lakshit Choudhary
2021-11-30
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 个评论
Walter Roberson
2023-11-29
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
aishwarya
2023-11-29
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);
disp(ac)
1 个评论
Walter Roberson
2023-11-29
编辑:Walter Roberson
2023-12-7
That function is not part of any Mathworks package
Jeetesh
2024-10-2
Just go to home > add on> get add-on > search for 'viewsolodone' and 'viewSolid' and install it > now run the code
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!