Uses of Class
org.apache.commons.math.linear.ArrayRealVector
Packages that use ArrayRealVector
-
Uses of ArrayRealVector in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that return ArrayRealVectorModifier and TypeMethodDescriptionArrayRealVector.add
(ArrayRealVector v) Compute the sum of this and v.ArrayRealVector.append
(ArrayRealVector v) Construct a vector by appending a vector to this vector.ArrayRealVector.ebeDivide
(ArrayRealVector v) Element-by-element division.ArrayRealVector.ebeMultiply
(ArrayRealVector v) Element-by-element multiplication.Parses a string to produce aRealVector
object.RealVectorFormat.parse
(String source, ParsePosition pos) Parses a string to produce aRealVector
object.ArrayRealVector.projection
(ArrayRealVector v) Find the orthogonal projection of this vector onto another vector.ArrayRealVector.subtract
(ArrayRealVector v) Compute this minus v.Methods in org.apache.commons.math.linear with parameters of type ArrayRealVectorModifier and TypeMethodDescriptionArrayRealVector.add
(ArrayRealVector v) Compute the sum of this and v.ArrayRealVector.append
(ArrayRealVector v) Construct a vector by appending a vector to this vector.double
ArrayRealVector.dotProduct
(ArrayRealVector v) Compute the dot product.ArrayRealVector.ebeDivide
(ArrayRealVector v) Element-by-element division.ArrayRealVector.ebeMultiply
(ArrayRealVector v) Element-by-element multiplication.double
ArrayRealVector.getDistance
(ArrayRealVector v) Distance between two vectors.double
ArrayRealVector.getL1Distance
(ArrayRealVector v) Distance between two vectors.double
ArrayRealVector.getLInfDistance
(ArrayRealVector v) Distance between two vectors.ArrayRealVector.outerProduct
(ArrayRealVector v) Compute the outer product.ArrayRealVector.projection
(ArrayRealVector v) Find the orthogonal projection of this vector onto another vector.void
ArrayRealVector.set
(int index, ArrayRealVector v) Set a set of consecutive elements.ArrayRealVector.subtract
(ArrayRealVector v) Compute this minus v.Constructors in org.apache.commons.math.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.