Symbolics.jl
Symbolics.jl copied to clipboard
Are there elegant way to write this expression?
to show a operation of processing like this code
using LaTeXStrings,Symbolics,LinearAlgebra,Latexify
@variables A,v,x₁,x₂
A=[1 2; 3 4 ; 5 6]
v=[x₁,x₂]
[latexify(A) ,L"\times",latexify(v) ,L"\Rightarrow", latexify(A*v)]