viewSolid.m and viewSolidone.m where to get?
Mostrar comentarios más antiguos
to visualize triple and double integrals.
Respuesta aceptada
Más respuestas (4)
Lakshit Choudhary
el 30 de Nov. de 2021
0 votos
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 comentario
Walter Roberson
el 29 de Nov. de 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
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 comentario
Walter Roberson
el 29 de Nov. de 2023
Editada: Walter Roberson
el 7 de Dic. de 2023
That function is not part of any Mathworks package
Kaustuv
el 7 de Dic. de 2023
0 votos
There you go!
Jeetesh
el 2 de Oct. de 2024
0 votos
Just go to home > add on> get add-on > search for 'viewsolodone' and 'viewSolid' and install it > now run the code
1 comentario
Walter Roberson
el 2 de Oct. de 2024
I suspect you meant viewsolidone
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!