フィルターのクリア

double integral over a curved region using trapz

3 ビュー (過去 30 日間)
ray sanchez
ray sanchez 2015 年 5 月 20 日
I'm trying to solve a double integral using the trapezoidal rule. I was told to use this file exchange 2D trapezoidal rule to help solve it and the code
x = 0:0.1:1;
y = 0:0.1:1;
[X,Y] = meshgrid(x,y);
F = @(x,y) 1;
Z = F(X,Y);
Z(Y > sqrt(1-X.^2)) = 0;
Either the code is not working or I'm just not sure how to get it to work with the function in the file exchange link.
The integral I'm trying to solve is this.
Any help would be appreciated.

回答 (0 件)

カテゴリ

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by