You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be useful to include, in the documentation, an example on concatenating latex terms, such as when generating a state-space representation in LaTeX given the A,B,C matrices.
This is an example (Is this the best way to do it?)
using Latexify
function Latexify_ss(A, B, C)
return string("\$\\dot{x}=", latexarray(A), "x+", latexarray(B), "u \\\\ [2mm] ", "y=", latexarray(C), "x\$")
end
A = [1 0; 0 1];
B = [1; 0];
C = [1 0];
println.(Latexify_ss(A,B,C));
It would be useful to include, in the documentation, an example on concatenating latex terms, such as when generating a state-space representation in LaTeX given the A,B,C matrices.
This is an example (Is this the best way to do it?)
Output:
The text was updated successfully, but these errors were encountered: