[][src]Function arrayfire::solve_lu

pub fn solve_lu<T>(
    a: &Array<T>,
    piv: &Array<i32>,
    b: &Array<T>,
    options: MatProp
) -> Array<T> where
    T: HasAfEnum + FloatingPoint

Solve a system of equations

Parameters

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