필터 지우기
필터 지우기

converting sym function to string MATLAB

조회 수: 144 (최근 30일)
Andromeda
Andromeda 2021년 10월 17일
댓글: Walter Roberson 2023년 5월 22일
I am attempting to convert a symbolic expression to a string using the function sym2str but I am getting an error. How can I convert a symbolic expression to a string? See attachment below

채택된 답변

Star Strider
Star Strider 2021년 10월 17일
Try this —
syms x y
eqn = x^2+2*x*y+3*y^2;
partial_eqn = diff(eqn, x);
fprintf("The partial derivative of %s w.r.t. x is %s \n", string(eqn), string(partial_eqn))
The partial derivative of 2*x*y + x^2 + 3*y^2 w.r.t. x is 2*x + 2*y
Also, using fprintf is easier and creates a more pleasing result.
.
  댓글 수: 5
Star Strider
Star Strider 2023년 5월 22일
@Jagan — I suppose that it depends on what you are converting. This approach works here.
If you have a specific problem, it would be best for you to post it as a new Question, along with the sym expression you want to convert.
Walter Roberson
Walter Roberson 2023년 5월 22일
string() should give you the same printable representation that displaying at the command line gives.
Note however, that the printable representation is not necessarily something that can be executed as MATLAB code or as symbolic code or as the internal MuPAD symbolic language. The printable display of symbolic functions and symbolic expressions is intended for human understanding, not for machine execution.
If you are looking for something that has to be machine executable then use matlabFunction after which you can use func2str

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by