verry.linalg.approx_solve#
- verry.linalg.approx_solve(a, b)#
Solve a linear equation
a @ x = b
approximately.- Parameters:
a (IntervalMatrix | ndarray) – Coefficient matrix.
b (IntervalMatrix | ndarray) – Right-hand side of the equation.
- Return type:
ndarray
- Raises:
LinAlgError – If a is numerically singular or not square.