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 Kommentare

Mykhailo
Mykhailo am 8 Dez. 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 am 8 Dez. 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.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by