Creating latex formulas in Live Script (without an editor).

Hello.
You need to display the entire formula, but the final result does not match the expected result.
Here's what happens:
Here's how it should be:
Please tell me the solution. Thanks.
syms E_vec_dot_i;
Ei = E_vec_dot_i
vE_i=sym('E_dot_i__',[n;1])
qw= Ei==vE_i

Antworten (1)

Walter Roberson
Walter Roberson am 18 Feb. 2021

0 Stimmen

You cannot get that requested output directly from the Symbolic Toolbox in Live Script. The only time the Symbolic Toolbox is willing to output name = ARRAY is if you display() a variable, the way you display vE_i to the command line. However in such cases, the Symbolic Toolbox will not pretty-print the variable name -- notice that you got vE_i on the display, not
You might be able to generate the relevant latex using latex(vE_i) and appropriate other latex() for the left side. Unfortunately, Live Script does not offer any facility to render calculated latex.

Kategorien

Gefragt:

am 18 Feb. 2021

Beantwortet:

am 18 Feb. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by