Inverse() public method

Creates an inverse of the current matrix
public Inverse ( ) : Matrix
return Matrix
Exemplo n.º 1
0
 /// <summary>
 /// Creates an inverse of the current matrix
 /// </summary>
 /// <returns></returns>
 public Matrix Inverse()
 {
     return(Matrix.Inverse(this));
 }