How do I write an expression like this question in matlab codes and execute it without errors but logical answers?
58 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Eneriko Ratuloaloa
il 5 Ott 2018
Commentato: Walter Roberson
il 13 Gen 2023
Using double integral.Find the volume of the solid lying under the elliptic paraboloid x2/4+y2/9+ z = 1 and above the rectangle R = [−1,1]×[−2,2]
6 Commenti
madhan ravi
il 5 Ott 2018
select the whole code and press the code button{} so that its easier to read
Risposta accettata
Dimitris Kalogiros
il 5 Ott 2018
Modificato: Dimitris Kalogiros
il 5 Ott 2018
Try the following script
close all
clearvars
syms x y z
z=-(x^2)/4 - (y^2)/9 +1
fsurf(z);
xlabel('x'); ylabel('y'); zlabel('z');
vol= int( int(z, x, -1, 1 ) , y, -2, 2)
If you run it, it would give something like this:
Più risposte (1)
satish
il 13 Gen 2023
find the volume of the solid S that is bounded by the elliptic paraboloid x^2+2*y^2+z-16=0, the planes x=2 and y=2 and the three coordinate planes.
1 Commento
Walter Roberson
il 13 Gen 2023
please expand on the mathematics to demonstrate that this volume is the same as the volume that the original poster was asking about. The identity of those two volumes is not obvious to me, so I do not understand how this is a solution to the question asked.
Vedere anche
Categorie
Scopri di più su Volume Visualization in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!