Accord.Math.CSharpJaggedMatrixFormatProvider.CSharpJaggedMatrixFormatProvider C# (CSharp) Method

CSharpJaggedMatrixFormatProvider() public method

Initializes a new instance of the CSharpJaggedMatrixFormatProvider class.
public CSharpJaggedMatrixFormatProvider ( IFormatProvider innerProvider ) : System
innerProvider IFormatProvider
return System
        public CSharpJaggedMatrixFormatProvider(IFormatProvider innerProvider)
            : base(innerProvider)
        {
            FormatMatrixStart = "new double[][] {\n";
            FormatMatrixEnd = " \n};";
            FormatRowStart = "    new double[] { ";
            FormatRowEnd = " }";
            FormatColStart = ", ";
            FormatColEnd = ", ";
            FormatRowDelimiter = ",\n";
            FormatColDelimiter = ", ";

            ParseMatrixStart = "new double[][] {";
            ParseMatrixEnd = "};";
            ParseRowStart = "new double[] {";
            ParseRowEnd = "}";
            ParseColStart = ",";
            ParseColEnd = ",";
            ParseRowDelimiter = "},";
            ParseColDelimiter = ",";
        }
CSharpJaggedMatrixFormatProvider