how to solve this

1 次查看(过去 30 天)
Praveen
Praveen 2022-6-17
回答: Voss 2022-6-18
Area A= pi*r^2 where r=pi^1/3-1

回答(2 个)

Sam Chak
Sam Chak 2022-6-17
The Area A computed by MATLAB is as correct as the radius r given by you.
r = pi^1/3-1
r = 0.0472
A = pi*r^2
A = 0.0070

Voss
Voss 2022-6-18
r = pi^1/3-1 % == (pi^1)/3 - 1 == pi/3 - 1
r = 0.0472
A = pi*r^2
A = 0.0070
r = pi^(1/3)-1 % pi to the one-third power, minus one
r = 0.4646
A = pi*r^2
A = 0.6781

类别

Help CenterFile Exchange 中查找有关 Data Import and Analysis 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by