Borrar filtros
Borrar filtros

Calculations on user input equation

1 visualización (últimos 30 días)
Mohamed ahmed
Mohamed ahmed el 29 de Nov. de 2016
Respondida: Walter Roberson el 29 de Nov. de 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.

Respuestas (1)

Walter Roberson
Walter Roberson el 29 de Nov. de 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?

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by