how to solve this
Ältere Kommentare anzeigen
Antworten (2)
The Area A computed by MATLAB is as correct as the radius r given by you.
r = pi^1/3-1
A = pi*r^2
r = pi^1/3-1 % == (pi^1)/3 - 1 == pi/3 - 1
A = pi*r^2
r = pi^(1/3)-1 % pi to the one-third power, minus one
A = pi*r^2
Kategorien
Mehr zu Introduction to Installation and Licensing finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!