pub fn lu_inplace<T>(input: &mut Array<T>, is_lapack_piv: bool) -> Array<i32>where
T: HasAfEnum + FloatingPoint,Expand description
Perform inplace LU decomposition
§Parameters
inputcontains the input matrix on entry and packed LU decomposition on exitis_lapack_picspecified if the pivot is returned in original LAPACK compliant format
§Return Values
An Array with permutation indices to map the input to the decomposition. Since, the input matrix is modified in place, only pivot values are returned.