Uses of Class
org.hipparchus.linear.ArrayRealVector
-
Uses of ArrayRealVector in org.hipparchus.linear
Modifier 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 ofthis
andy
.ArrayRealVector.combineToSelf
(double a, double b, RealVector y) Updatesthis
with the linear combination ofthis
andy
.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 aRealVector
object.RealVectorFormat.parse
(String source, ParsePosition pos) Parse a string to produce aRealVector
object.ArrayRealVector.subtract
(RealVector v) Subtractv
from this vector.Modifier and TypeMethodDescriptionArrayRealVector.append
(ArrayRealVector v) Construct a vector by appending a vector to this vector.ModifierConstructorDescriptionArrayRealVector
(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.