solve_multiple_ndarray

Function solve_multiple_ndarray 

Source
pub fn solve_multiple_ndarray<T>(
    a: &Array2<T>,
    b: &Array2<T>,
) -> LapackResult<Array2<T>>
where T: Field + Clone + Zeroable + Real,
Expand description

Solves multiple linear systems AX = B.

§Arguments

  • a - The coefficient matrix (n×n)
  • b - The right-hand side matrix (n×k)

§Returns

The solution matrix X (n×k)