Uses of Class
org.apache.commons.math3.linear.ArrayRealVector

Packages that use ArrayRealVector
org.apache.commons.math3.linear Linear algebra support. 
 

Uses of ArrayRealVector in org.apache.commons.math3.linear
 

Methods in org.apache.commons.math3.linear that return ArrayRealVector
 ArrayRealVector ArrayRealVector.add(RealVector v)
          Compute the sum of this vector and v.
 ArrayRealVector ArrayRealVector.append(ArrayRealVector v)
          Construct a vector by appending a vector to this vector.
 ArrayRealVector ArrayRealVector.combine(double a, double b, RealVector y)
          Returns a new vector representing a * this + b * y, the linear combination of this and y.
 ArrayRealVector ArrayRealVector.combineToSelf(double a, double b, RealVector y)
          Updates this with the linear combination of this and y.
 ArrayRealVector ArrayRealVector.copy()
          Returns a (deep) copy of this vector.
 ArrayRealVector ArrayRealVector.ebeDivide(RealVector v)
          Element-by-element division.
 ArrayRealVector ArrayRealVector.ebeMultiply(RealVector v)
          Element-by-element multiplication.
 ArrayRealVector ArrayRealVector.map(UnivariateFunction function)
          Acts as if implemented as: return copy().mapToSelf(function); Returns a new vector.
 ArrayRealVector ArrayRealVector.mapToSelf(UnivariateFunction function)
          Acts as if it is implemented as: Entry e = null; for(Iterator it = iterator(); it.hasNext(); e = it.next()) { e.setValue(function.value(e.getValue())); } Entries of this vector are modified in-place by this method.
 ArrayRealVector RealVectorFormat.parse(String source)
          Parse a string to produce a RealVector object.
 ArrayRealVector RealVectorFormat.parse(String source, ParsePosition pos)
          Parse a string to produce a RealVector object.
 ArrayRealVector ArrayRealVector.subtract(RealVector v)
          Subtract v from this vector.
 

Methods in org.apache.commons.math3.linear with parameters of type ArrayRealVector
 ArrayRealVector ArrayRealVector.append(ArrayRealVector v)
          Construct a vector by appending a vector to this vector.
 

Constructors in org.apache.commons.math3.linear with parameters of type ArrayRealVector
ArrayRealVector(ArrayRealVector v)
          Construct a vector from another vector, using a deep copy.
ArrayRealVector(ArrayRealVector v1, ArrayRealVector v2)
          Construct a vector by appending one vector to another vector.
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.
ArrayRealVector(ArrayRealVector v1, RealVector v2)
          Construct a vector by appending one vector to another vector.
ArrayRealVector(double[] v1, ArrayRealVector 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.
 



Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.