Please help me code this
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Brendan Jozwiak
am 11 Jul. 2022
Kommentiert: John D'Errico
am 11 Jul. 2022
1 Kommentar
John D'Errico
am 11 Jul. 2022
Stop posting your homework problems You have gotten two of them solved. Enough. Answers is not a homework solving service.
Akzeptierte Antwort
Weitere Antworten (1)
Torsten
am 11 Jul. 2022
c = integral(@(x)integral(@(y)sqrt(x.^2+y.^2),0,sqrt(2*x-x.^2)),0,2,'ArrayValued',true)
syms x y
c = int(int(sqrt(x^2+y^2),y,0,sqrt(2*x-x^2)),x,0,2)
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!