converting sym function to string MATLAB
200 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
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))
.
5 个评论
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
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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!