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

Reverse() public method

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