Calculations on user input equation

1 次查看(过去 30 天)
i want to make calculations on the user input equation which will contain only one variable such as t but when i add or multiply it by any number it gives me a matrix such as shown in this picture.

回答(1 个)

Walter Roberson
Walter Roberson 2016-11-29
input() with the 's' option returns a string. You are seeing the result of adding 6 to a string.
However, you will also need to study Yacc and Lex and similar parsing strategies, and you will probably want to use regexp along the way. You need to study these because you have invented your own input language to represent functions ('5t+3') and you will need to convert that input language into something that MATLAB can understand. You will need to make a lot of decisions about operator precedence such as whether 'a/b/c' means a/(b/c) or means (a/b)/c and whether t--5 is invalid or means minus(t,minus(0,5)). In your invented language, will 'sin x' mean a variable 'sin' multiplied by a variable 'x' or will it be an error or will it mean sin(x) and if it means sin(x) will that be in radians or degrees?

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by