Ejemplo n.º 1
0
 /// <summary>
 /// Inverts a matrix A to B so that A * B = I
 /// Borrowed from here: https://www.geeksforgeeks.org/adjoint-inverse-matrix/
 ///
 /// O(N^5)
 /// </summary>
 public void InvertMatrix()
 => Inversion <T, TWrapper> .InvertMatrix(this);