Area A= pi*r^2 where r=pi^1/3-1

댓글 수: 1

Rik
Rik 2022년 6월 18일
Are you posting homework questions?

댓글을 달려면 로그인하십시오.

답변 (2개)

Sam Chak
Sam Chak 2022년 6월 17일

0 개 추천

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일

0 개 추천

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

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

태그

질문:

2022년 6월 17일

답변:

2022년 6월 18일

Community Treasure Hunt

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

Start Hunting!

Translated by