viewSolid.m and viewSolidone.m where to get?

조회 수: 924 (최근 30일)
Anish Ganguly
Anish Ganguly 2017년 10월 30일
댓글: Walter Roberson 2024년 10월 2일
to visualize triple and double integrals.

채택된 답변

Mary Abbott
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
Walter Roberson 2021년 4월 28일
Download the files to your desktop, and use MATLAB Connector to upload them to matlab online.

댓글을 달려면 로그인하십시오.

추가 답변 (4개)

Lakshit Choudhary
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
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
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);
Unrecognized function or variable 'viewSolid'.
disp(ac)

Kaustuv
Kaustuv 2023년 12월 7일
There you go!

Jeetesh
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

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by