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 个评论

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.
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.

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by