Uses of Class
org.apache.commons.math4.legacy.linear.ArrayRealVector
-
Packages that use ArrayRealVector Package Description org.apache.commons.math4.legacy.linear Linear algebra support. -
-
Uses of ArrayRealVector in org.apache.commons.math4.legacy.linear
Methods in org.apache.commons.math4.legacy.linear that return ArrayRealVector Modifier and Type Method Description ArrayRealVector
ArrayRealVector. add(RealVector v)
Compute the sum of this vector andv
.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 representinga * this + b * y
, the linear combination ofthis
andy
.ArrayRealVector
ArrayRealVector. combineToSelf(double a, double b, RealVector y)
Updatesthis
with the linear combination ofthis
andy
.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:ArrayRealVector
ArrayRealVector. mapToSelf(UnivariateFunction function)
Acts as if it is implemented as:Entry e = null; for(Iterator<Entry> 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 aRealVector
object.ArrayRealVector
RealVectorFormat. parse(String source, ParsePosition pos)
Parse a string to produce aRealVector
object.ArrayRealVector
ArrayRealVector. subtract(RealVector v)
Subtractv
from this vector.Methods in org.apache.commons.math4.legacy.linear with parameters of type ArrayRealVector Modifier and Type Method Description ArrayRealVector
ArrayRealVector. append(ArrayRealVector v)
Construct a vector by appending a vector to this vector.Constructors in org.apache.commons.math4.legacy.linear with parameters of type ArrayRealVector Constructor Description ArrayRealVector(double[] v1, ArrayRealVector v2)
Construct a vector by appending one vector to another vector.ArrayRealVector(ArrayRealVector v)
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.ArrayRealVector(ArrayRealVector v1, ArrayRealVector 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(RealVector v1, ArrayRealVector v2)
Construct a vector by appending one vector to another vector.
-