Uses of Class
org.apache.commons.math3.linear.ArrayRealVector
Packages that use ArrayRealVector
-
Uses of ArrayRealVector in org.apache.commons.math3.linear
Methods in org.apache.commons.math3.linear that return ArrayRealVectorModifier and TypeMethodDescriptionArrayRealVector.add(RealVector v) Compute the sum of this vector andv.ArrayRealVector.append(ArrayRealVector v) Construct a vector by appending a vector to this vector.ArrayRealVector.combine(double a, double b, RealVector y) Returns a new vector representinga * this + b * y, the linear combination ofthisandy.ArrayRealVector.combineToSelf(double a, double b, RealVector y) Updatesthiswith the linear combination ofthisandy.ArrayRealVector.copy()Returns a (deep) copy of this vector.ArrayRealVector.ebeDivide(RealVector v) Element-by-element division.ArrayRealVector.ebeMultiply(RealVector v) Element-by-element multiplication.ArrayRealVector.map(UnivariateFunction function) Acts as if implemented as:ArrayRealVector.mapToSelf(UnivariateFunction function) Acts as if it is implemented as:Parse a string to produce aRealVectorobject.RealVectorFormat.parse(String source, ParsePosition pos) Parse a string to produce aRealVectorobject.ArrayRealVector.subtract(RealVector v) Subtractvfrom this vector.Methods in org.apache.commons.math3.linear with parameters of type ArrayRealVectorModifier and TypeMethodDescriptionArrayRealVector.append(ArrayRealVector v) Construct a vector by appending a vector to this vector.Constructors in org.apache.commons.math3.linear with parameters of type ArrayRealVectorModifierConstructorDescriptionArrayRealVector(double[] v1, ArrayRealVector v2) Construct a vector by appending one vector to another vector.Construct a vector from another vector, using a deep copy.ArrayRealVector(ArrayRealVector v, boolean deep) Construct a vector from another vector.ArrayRealVector(ArrayRealVector v1, double[] v2) Construct a vector by appending one vector to another vector.Construct a vector by appending one vector to another vector.ArrayRealVector(ArrayRealVector v1, RealVector v2) Construct a vector by appending one vector to another vector.ArrayRealVector(RealVector v1, ArrayRealVector v2) Construct a vector by appending one vector to another vector.