Function arrayfire::solve_lu [] [src]

pub fn solve_lu(a: &Array, piv: &Array, b: &Array, options: MatProp) -> Array

Solve a system of equations

Parameters

  • a is the output matrix from packed LU decomposition of the coefficient matrix
  • piv is the pivot array from packed LU decomposition of the coefficient matrix
  • b has the measured values
  • options determine the various properties of matrix a

The options parameter currently needs to be NONE, other values are not supported yet.

Return Values

An Array which is the matrix of unknown variables