AIMA.Core.Util.Math.Vector.Vector C# (CSharp) Method

Vector() public method

public Vector ( List lst ) : System
lst List
return System
        public Vector(List<Double> lst)
            : base(lst.Count, 1)
        {

            for (int i = 0; i < lst.Count; i++)
            {
                setValue(i, lst[i]);
            }
        }

Same methods

Vector::Vector ( int size ) : System