Filter löschen
Filter löschen

viewSolid.m and viewSolidone.m where to get?

4 Ansichten (letzte 30 Tage)
Anish Ganguly
Anish Ganguly am 30 Okt. 2017
Bearbeitet: Walter Roberson am 7 Dez. 2023
to visualize triple and double integrals.

Akzeptierte Antwort

Mary Abbott
Mary Abbott am 1 Nov. 2017
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 Kommentare
Walter Roberson
Walter Roberson am 28 Apr. 2021
Download the files to your desktop, and use MATLAB Connector to upload them to matlab online.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (3)

Lakshit Choudhary
Lakshit Choudhary am 30 Nov. 2021
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 Kommentar
Walter Roberson
Walter Roberson am 29 Nov. 2023
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

Melden Sie sich an, um zu kommentieren.


aishwarya
aishwarya am 29 Nov. 2023
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 am 7 Dez. 2023
There you go!

Community Treasure Hunt

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

Start Hunting!

Translated by