フィルターのクリア

volume using double integral

18 ビュー (過去 30 日間)
Gowrinath S
Gowrinath S 2019 年 10 月 15 日
回答済み: Raúl Ibáñez Couoh 2019 年 10 月 15 日
Matlab code to find the volume of the solid (using double integral) bounded by x^2 + y^2= 9 , y + z= 4 and z=0.
  1 件のコメント
David Wilson
David Wilson 2019 年 10 月 15 日
You might want to try integral2 and use polar coordinates since your domain is a circle. See the help file.

サインインしてコメントする。

回答 (2 件)

Raúl Ibáñez Couoh
Raúl Ibáñez Couoh 2019 年 10 月 15 日
Hello friend try this:
clc,clear
syms x y z
x_1= sqrt(9-y^2);
z= (4-y)
y_0=-3;
y_1=3;
volumen= int(int(z,x,0,x_1),y,y_0,y_1)

Raúl Ibáñez Couoh
Raúl Ibáñez Couoh 2019 年 10 月 15 日
see you later...
amigo.JPG

カテゴリ

Help Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by