Cholesky() public method

public Cholesky ( ) : Cholesky
return Cholesky
 public void CholeskyFailsWithNonSquareMatrix()
 {
     var matrix = new DenseMatrix(3, 2);
     Assert.Throws<ArgumentException>(() => matrix.Cholesky());
 }