Exemple #1
0
        public static matrix AsMatrix(this NDArray nd)
        {
            var npAsMatrix = new matrix(nd);

            npAsMatrix.reshape(nd.shape);

            return(npAsMatrix);
        }