How do I integrate the triple integral square root of 4-x^2-y^2-z^2 from 0,1,0,1,0,1?

6 views (last 30 days)
Looks complicated.

Answers (1)

the cyclist
the cyclist on 2 Jul 2021
Edited: the cyclist on 2 Jul 2021
f = @(x,y,z) sqrt(4 - x.^2 - y.^2 - z.^2);
q = integral3(f,0,1,0,1,0,1)
q = 1.7252

Categories

Find more on Programming in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!