solve symbolic linear system
x = LUSolve( A, b )
symbolic (n,n)-matrix
symbolic (n,1)-matrix
Returns the solution x of the linear system A*x = b.
// setup matrices A, b A = Mat("a",2,2) b = Mat("b",2,1) // solution of A*x = b LUSolve(A,b)
SymEngine: C++ library for fast symbolic manipulation.