Symbolics.jl icon indicating copy to clipboard operation
Symbolics.jl copied to clipboard

Are there elegant way to write this expression?

Open phpsmarter opened this issue 3 years ago • 0 comments

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)]

phpsmarter avatar Jul 28 '22 01:07 phpsmarter