i want to be able to input mixed fractions in matlab for example 7(7/8) if i enter it as 7*(7/8) or 7(7/8) it does not work what can i do to fix this???

4 Commenti

Mykhailo
Mykhailo il 8 Dic 2022
try 7.+(7.\8)
7.+(7.\8)
ans = 8.1429
Notice the result is greater than 8, but is expected to be less than 8.
Mykhailo
Mykhailo il 8 Dic 2022
7.*(7.\8)
ans = 8
Are you sure that is what the user is looking for?? If so, why would they use the obscure .\ operator rather than
7/(7/8)
ans = 8
I am morally certain that what they are looking for is the value that is 7/8 greater than 7.

Accedi per commentare.

Più risposte (0)

Categorie

Community Treasure Hunt

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

Start Hunting!

Translated by