Clear Filters
Clear Filters

Calculations on user input equation

2 views (last 30 days)
Mohamed ahmed
Mohamed ahmed on 29 Nov 2016
Answered: Walter Roberson on 29 Nov 2016
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.

Answers (1)

Walter Roberson
Walter Roberson on 29 Nov 2016
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?

Community Treasure Hunt

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

Start Hunting!