double integral over a curved region using trapz
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (0)
Siehe auch
Kategorien
Mehr zu Numerical Integration and Differentiation finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!