필터 지우기
필터 지우기

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

조회 수: 82 (최근 30일)
Ryan
Ryan 2022년 9월 28일
답변: Walter Roberson 2022년 9월 28일
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.

채택된 답변

Walter Roberson
Walter Roberson 2022년 9월 28일
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.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by