Accord.Math.Formats.MatrixFormatter.ParseMultidimensional C# (CSharp) Method

ParseMultidimensional() public static method

Converts a matrix represented in a System.String into a multi-dimensional array.
public static ParseMultidimensional ( string str, IMatrixFormatProvider provider ) : ].double[
str string
provider IMatrixFormatProvider
return ].double[
        public static double[,] ParseMultidimensional(string str, IMatrixFormatProvider provider)
        {
            return ParseJagged(str, provider).ToMatrix();
        }