double integral over a curved region using trapz

2 views (last 30 days)
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.

Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!