Accord.Math.Decompositions.JaggedEigenvalueDecompositionF.Reverse C# (CSharp) Method

Reverse() public method

Reverses the decomposition, reconstructing the original matrix X.
public Reverse ( ) : System.Single[][]
return System.Single[][]
        public Single[][] Reverse()
        {
            return V.DotWithDiagonal(d).Divide(V);
        }