FastQuant.Quant.Vector.Vector C# (CSharp) Method

Vector() public method

public Vector ( int nrows ) : System
nrows int
return System
        public Vector(int nrows)
        {
            EnsureNumberPositive(nrows, "Number of rows");
            NRows = nrows;
            Elements = new double[NRows];
        }

Same methods

Vector::Vector ( ) : System