Clear Filters
Clear Filters

How do I change the order symbolic variables are displayed in the output in a Matlab Live Script?

4 views (last 30 days)
Hi,
As the question says, I would like to change the order Matlab displays symbolic variables in a live script. Currently it seems to alphabetise them but I would prefer to be able to set the order, or at least have them stay in the order I input them.
Also is there any way I can specify subscripts in the output? For example I would like to type Kact in the code and have it displayed as K_{act}.
I know these sound like minor things but I export to latex and it's taking me hours to edit.
Thanks Carla

Answers (1)

madhan ravi
madhan ravi on 5 Jul 2018
Edited: madhan ravi on 5 Jul 2018
Hi! There’s in built latex option in matlab . As soon as you define every variable as syms. For example
syms x y
y=x.^2-sqrt(2)
After you run the code You can type latex(y) in the command window and you will get the specified latex format.You copy the form from matlab and use it in pages via inserting equations. This is how I do often it’s simpler and you don’t have to type latex codes .
  1 Comment
Carla White
Carla White on 5 Jul 2018
Hi, thank you but that's not quite what I meant. Maybe I should have given an example code to better explain :) So if I type in Matlab:
syms ka zp A
AR1=zp*ka*A
Then the output I get is:
AR1 =
A*ka*zp
As you can see it reorders my variables. I would like it not to do this. Ideally I would like to specify the order in which the variables appear in the output so that they are in the correct order when I export it to latex. I was hoping there would be a line of code to do this.
Thanks, Carla

Sign in to comment.

Categories

Find more on Function Creation in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!