Package | Description |
---|---|
fr.cnes.sirius.patrius.math.linear |
Modifier and Type | Method and Description |
---|---|
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<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 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. |
Modifier and Type | Method and Description |
---|---|
ArrayRealVector |
ArrayRealVector.append(ArrayRealVector v)
Construct a vector by appending a vector to this vector.
|
Constructor and Description |
---|
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 © 2021 CNES. All rights reserved.