Thanks to visit codestin.com
Credit goes to docs.rs

inverse

Function inverse 

Source
pub fn inverse<T>(input: &Array<T>, options: MatProp) -> Array<T>
Expand description

Compute inverse of a matrix

§Parameters

  • input is the input matrix
  • options determine various properties of input matrix

The parameter options currently take only the value NONE.

§Return Values

An Array with values of the inverse of input matrix.