verry.linalg.solve#

verry.linalg.solve(a, b, r=None)#

Solve a linear equation a @ x = b.

Parameters:
  • a (IntervalMatrix | ndarray) – Coefficient matrix.

  • b (IntervalMatrix | ndarray) – Right-hand side of the equation.

  • r (ndarray, optional) – Approximate inverse of a.

Return type:

IntervalMatrix

Raises:

LinAlgError – If a is numerically singular or not square.