Must be a text scalar when using eval() function problems?

69 visualizaciones (últimos 30 días)
Ryan
Ryan el 28 de Sept. de 2022
Respondida: Walter Roberson el 28 de Sept. de 2022
n_stress = F./(t.*w);
n_stress = eval(n_stress);
Error using eval
Must be a text scalar.
Error in Carbon90 (line 55)
n_stress = eval(n_stress);
I am unsure as to why I am having issues using the eval() function with a something(underscore)something as the argument because I have not had this problem before.

Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Sept. de 2022
eval() is defined only for character vectors and string scalars. It is not defined for numeric values, and it is not defined for symbolic expressions.
If you have a symbolic expression that does not have any unbound variables then you should double() the expression. If it has unbound variables then vpa() the expression.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by