Clear Filters
Clear Filters

How do I change the format of symbolic output

4 views (last 30 days)
When I type:
>> syms x y
>> solve(y-x^2,x)
I get:
ans =
[ 1/2 ]
[y ]
[ ]
[ 1/2]
[-y ]
How do I change the output format so to get MATLAB code (with * and ^), which by the way is what I used to get (before today)?
  2 Comments
VBBV
VBBV on 28 May 2024
@Peter van der Kamp use texlabel function
syms x y
sol = solve(y-x^2,x);
sol
sol = 
solStr = texlabel(sol)
solStr = '[-{y}^{{1}/{2}}; {y}^{{1}/{2}}]'
Peter van der Kamp
Peter van der Kamp on 28 May 2024
Thanks, it's nice to know that I can turn things into tex. But it's not what I want. I'd like to define the solutions as branches of a multivalued function which I can feed back into MATLAB. Of course, this is just a simple example which I created for the issue I'm having. I used to get my answer in the following format: e.g. sqrt(5/2 + sqrt(w^2 + 9/4)) which is what I'm after. I'm using version R2022b.

Sign in to comment.

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 28 May 2024
Change the symbolic preference of Type-setting as follows -
syms x y
sol = solve(y-x^2,x)
sol = 
%Preference changed (Default value is true)
sympref('TypesetOutput',false);
%Check the output now
sol
sol = -y^(1/2) y^(1/2)
  8 Comments
Dyuman Joshi
Dyuman Joshi on 29 May 2024
Based on your comments, things seem to be mixed up.
Yes, reinstalling MATLAB should clear the issue.
Let us know what happens after reinstalling.
Peter van der Kamp
Peter van der Kamp on 30 May 2024
Hi Dyuman, good news here:
>> syms x y
>> solve(x-y^2,y)
ans =
-x^(1/2)
x^(1/2)
After reinstalling MATLAB and restarting my computer, things are working well again. IT suggested that maybe a restart of the computer could have fixed the problem (I tend to not do that often enough, sorry).
Cheers,
Peter

Sign in to comment.

More Answers (1)

Ninad
Ninad on 28 May 2024
Hi Peter,
If you're using MATLAB version R2016b or newer, you can use "string(sol)" to convert the solution to a string format.
For versions older than R2016b, please use "char(sol)" to achieve the same outcome.
Below is a code snippet for your reference:
>> syms x y
>> sol = solve(y-x^2,x);
>> solStr = string(sol);
>> solChar = string(sol);
>> disp(solStr)
"-y^(1/2)"
"y^(1/2)"
>> disp(solChar)
"-y^(1/2)"
"y^(1/2)"
I hope you find this information helpful.
Regards,
Ninad
  1 Comment
Peter van der Kamp
Peter van der Kamp on 28 May 2024
I'm on R2022b, when I type string(sol) I get:
Error using string
Conversion to string from sym is not possible.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!