how to solve this
古いコメントを表示
回答 (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
カテゴリ
ヘルプ センター および File Exchange で Introduction to Installation and Licensing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!