Please help me code this

1 visualizzazione (ultimi 30 giorni)
Brendan Jozwiak
Brendan Jozwiak il 11 Lug 2022
Commentato: John D'Errico il 11 Lug 2022
  1 Commento
John D'Errico
John D'Errico il 11 Lug 2022
Stop posting your homework problems You have gotten two of them solved. Enough. Answers is not a homework solving service.

Accedi per commentare.

Risposta accettata

Brendan Jozwiak
Brendan Jozwiak il 11 Lug 2022
func=@(x,y) sqrt(x.^2 + y.^2);
ymax=@(x) sqrt(2.*x - x.^2);
result=integral2(func,0,2,0,ymax);
disp("Result=");
Result=
disp(result);
1.7778

Più risposte (1)

Torsten
Torsten il 11 Lug 2022
c = integral(@(x)integral(@(y)sqrt(x.^2+y.^2),0,sqrt(2*x-x.^2)),0,2,'ArrayValued',true)
c = 1.7778
syms x y
c = int(int(sqrt(x^2+y^2),y,0,sqrt(2*x-x^2)),x,0,2)
c = 

Categorie

Scopri di più su Programming in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by