a n-by-p matrix of doubles (real), the solution of A*X = B.
Description
Calls BLAS/DGESV.
Examples
// One RHS in the linear system of equationsA=[1234];e=[5;6];b=[17;39];x=linalg_dgesv(A,b);// 3 RHS in the linear system of equationsA=[1234];e=[5,1,2,3;6,2,3,4];b=[17,5,8,11;39,11,18,25];x=linalg_dgesv(A,b);// A singular systemA=[1212];b=[-66;-74];x=linalg_dgesv(A,b)