how to solve this
Afficher commentaires plus anciens
Area A= pi*r^2 where r=pi^1/3-1
1 commentaire
Rik
le 18 Juin 2022
Are you posting homework questions?
Réponses (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
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!