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

DefaultMatrixFormatProvider() public method

Initializes a new instance of the DefaultMatrixFormatProvider class.
public DefaultMatrixFormatProvider ( IFormatProvider innerProvider ) : System
innerProvider IFormatProvider
return System
        public DefaultMatrixFormatProvider(IFormatProvider innerProvider)
            : base(innerProvider)
        {
            FormatMatrixStart = String.Empty;
            FormatMatrixEnd = String.Empty;
            FormatRowStart = String.Empty;
            FormatRowEnd = String.Empty;
            FormatColStart = String.Empty;
            FormatColEnd = String.Empty;
            FormatRowDelimiter = " \n";
            FormatColDelimiter = " ";

            ParseMatrixStart = String.Empty;
            ParseMatrixEnd = String.Empty;
            ParseRowStart = String.Empty;
            ParseRowEnd = String.Empty;
            ParseColStart = String.Empty;
            ParseColEnd = String.Empty;
            ParseRowDelimiter = "\n";
            ParseColDelimiter = " ";
        }
DefaultMatrixFormatProvider