Uses of Class
org.apache.commons.math.linear.ArrayFieldVector
Packages that use ArrayFieldVector
-
Uses of ArrayFieldVector in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that return ArrayFieldVectorModifier and TypeMethodDescriptionArrayFieldVector.add
(ArrayFieldVector<T> v) Compute the sum of this and v.ArrayFieldVector.append
(ArrayFieldVector<T> v) Construct a vector by appending a vector to this vector.ArrayFieldVector.ebeDivide
(ArrayFieldVector<T> v) Element-by-element division.ArrayFieldVector.ebeMultiply
(ArrayFieldVector<T> v) Element-by-element multiplication.ArrayFieldVector.projection
(ArrayFieldVector<T> v) Find the orthogonal projection of this vector onto another vector.ArrayFieldVector.subtract
(ArrayFieldVector<T> v) Compute this minus v.Methods in org.apache.commons.math.linear with parameters of type ArrayFieldVectorModifier and TypeMethodDescriptionArrayFieldVector.add
(ArrayFieldVector<T> v) Compute the sum of this and v.ArrayFieldVector.append
(ArrayFieldVector<T> v) Construct a vector by appending a vector to this vector.ArrayFieldVector.dotProduct
(ArrayFieldVector<T> v) Compute the dot product.ArrayFieldVector.ebeDivide
(ArrayFieldVector<T> v) Element-by-element division.ArrayFieldVector.ebeMultiply
(ArrayFieldVector<T> v) Element-by-element multiplication.ArrayFieldVector.outerProduct
(ArrayFieldVector<T> v) Compute the outer product.ArrayFieldVector.projection
(ArrayFieldVector<T> v) Find the orthogonal projection of this vector onto another vector.void
ArrayFieldVector.set
(int index, ArrayFieldVector<T> v) Set a set of consecutive elements.ArrayFieldVector.subtract
(ArrayFieldVector<T> v) Compute this minus v.Constructors in org.apache.commons.math.linear with parameters of type ArrayFieldVectorModifierConstructorDescriptionConstruct a vector from another vector, using a deep copy.ArrayFieldVector
(ArrayFieldVector<T> v, boolean deep) Construct a vector from another vector.ArrayFieldVector
(ArrayFieldVector<T> v1, ArrayFieldVector<T> v2) Construct a vector by appending one vector to another vector.ArrayFieldVector
(ArrayFieldVector<T> v1, T[] v2) Construct a vector by appending one vector to another vector.ArrayFieldVector
(T[] v1, ArrayFieldVector<T> v2) Construct a vector by appending one vector to another vector.