Linear system

Applies to: general, python, fortran

A linear system is a set of equations written as A x = b. Solvers find the vector x.

x = np.linalg.solve(A, b)

See also: matrix, lapack