calculate math problem help

5 vues (au cours des 30 derniers jours)
idan
idan le 5 Juil 2022
Commenté : idan le 5 Juil 2022
how to write a code to caculate this tipe of problem: 4^2/(4+5^2)+6/74.
Thanks.

Réponses (2)

Kritarth Sinha
Kritarth Sinha le 5 Juil 2022
Hello Idan,
You can directly write the following expression as it is in matlab and it runs fine for me.
x=4^2/(4+5^2)+6/74.
Hope this will help.
  1 commentaire
idan
idan le 5 Juil 2022
Thanks:)

Connectez-vous pour commenter.


Garmit Pant
Garmit Pant le 5 Juil 2022
Modifié(e) : Garmit Pant le 5 Juil 2022
Hello idan
You can directly type this in a live script or the command window of MATLAB and it will give you the answer.
4^2/(4+5^2)+6/74
ans = 0.6328
Depending on different parentheses placements, the answer will differ so add parentheses according to your intended calculation.
4^2/((4+5^2)+6/74)
ans = 0.5502
4^(2/(4+5^2)+6/74)
ans = 1.2312
  1 commentaire
idan
idan le 5 Juil 2022
Thanks:)

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by