Back to Numerical Arrays (NumPy)
np.solve
Solve a linear matrix equation: a @ x = b
Syntax
np.solve(a, b)
Description
Solve a linear matrix equation: a @ x = b
Parameters
| Name | Description |
|---|---|
| a | - Coefficient matrix (N x N) |
| b | - Ordinate values (N,) or (N x NRHS) |
Returns
Promise<NDArray>