how to solve this
Mostrar comentarios más antiguos
Area A= pi*r^2 where r=pi^1/3-1
1 comentario
Rik
el 18 de Jun. de 2022
Are you posting homework questions?
Respuestas (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
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!