Class Vector1D
- All Implemented Interfaces:
Serializable,Point<Euclidean1D>,Vector<Euclidean1D>
Instances of this class are guaranteed to be immutable.
- Since:
- 3.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Vector1DA vector with all coordinates set to NaN.static final Vector1DA vector with all coordinates set to negative infinity.static final Vector1DUnit (coordinates: 1).static final Vector1DA vector with all coordinates set to positive infinity.static final Vector1DOrigin (coordinates: 0). -
Constructor Summary
ConstructorsConstructorDescriptionVector1D(double x) Simple constructor.Multiplicative constructor Build a vector from another one and a scale factor.Linear constructor Build a vector from two other ones and corresponding scale factors.Linear constructor Build a vector from three other ones and corresponding scale factors.Vector1D(double a1, Vector1D u1, double a2, Vector1D u2, double a3, Vector1D u3, double a4, Vector1D u4) Linear constructor Build a vector from four other ones and corresponding scale factors. -
Method Summary
Modifier and TypeMethodDescriptionadd(double factor, Vector<Euclidean1D> v) Add a scaled vector to the instance.add(Vector<Euclidean1D> v) Add a vector to the instance.static doubleCompute the distance between two vectors according to the L2 norm.doubledistance(Point<Euclidean1D> p) Compute the distance between the instance and another point.doubleDeprecated.doubleCompute the distance between the instance and another vector according to the L1 norm.static doubledistanceInf(Vector1D p1, Vector1D p2) Compute the distance between two vectors according to the L∞ norm.doubleCompute the distance between the instance and another vector according to the L∞ norm.static doubledistanceSq(Vector1D p1, Vector1D p2) Compute the square of the distance between two vectors.doubleCompute the square of the distance between the instance and another vector.doubleCompute the dot-product of the instance and another vector.booleanTest for the equality of two 1D vectors.doublegetNorm()Get the L2 norm for the vector.doublegetNorm1()Get the L1 norm for the vector.doubleGet the L∞ norm for the vector.doubleGet the square of the norm for the vector.getSpace()Get the space to which the point belongs.doublegetX()Get the abscissa of the vector.getZero()Get the null vector of the vectorial space or origin point of the affine space.inthashCode()Get a hashCode for the 1D vector.booleanReturns true if any coordinate of this vector is infinite and none are NaN; false otherwisebooleanisNaN()Returns true if any coordinate of this point is NaN; false otherwisenegate()Get the opposite of the instance.Get a normalized vector aligned with the instance.scalarMultiply(double a) Multiply the instance by a scalar.subtract(double factor, Vector<Euclidean1D> v) Subtract a scaled vector from the instance.Subtract a vector from the instance.toString()Get a string representation of this vector.toString(NumberFormat format) Get a string representation of this vector.
-
Field Details
-
ZERO
Origin (coordinates: 0). -
ONE
Unit (coordinates: 1). -
NaN
A vector with all coordinates set to NaN. -
POSITIVE_INFINITY
A vector with all coordinates set to positive infinity. -
NEGATIVE_INFINITY
A vector with all coordinates set to negative infinity.
-
-
Constructor Details
-
Vector1D
public Vector1D(double x) Simple constructor. Build a vector from its coordinates- Parameters:
x- abscissa- See Also:
-
Vector1D
Multiplicative constructor Build a vector from another one and a scale factor. The vector built will be a * u- Parameters:
a- scale factoru- base (unscaled) vector
-
Vector1D
Linear constructor Build a vector from two other ones and corresponding scale factors. The vector built will be a1 * u1 + a2 * u2- Parameters:
a1- first scale factoru1- first base (unscaled) vectora2- second scale factoru2- second base (unscaled) vector
-
Vector1D
Linear constructor Build a vector from three other ones and corresponding scale factors. The vector built will be a1 * u1 + a2 * u2 + a3 * u3- Parameters:
a1- first scale factoru1- first base (unscaled) vectora2- second scale factoru2- second base (unscaled) vectora3- third scale factoru3- third base (unscaled) vector
-
Vector1D
public Vector1D(double a1, Vector1D u1, double a2, Vector1D u2, double a3, Vector1D u3, double a4, Vector1D u4) Linear constructor Build a vector from four other ones and corresponding scale factors. The vector built will be a1 * u1 + a2 * u2 + a3 * u3 + a4 * u4- Parameters:
a1- first scale factoru1- first base (unscaled) vectora2- second scale factoru2- second base (unscaled) vectora3- third scale factoru3- third base (unscaled) vectora4- fourth scale factoru4- fourth base (unscaled) vector
-
-
Method Details
-
getX
public double getX()Get the abscissa of the vector.- Returns:
- abscissa of the vector
- See Also:
-
getSpace
Get the space to which the point belongs.- Specified by:
getSpacein interfacePoint<Euclidean1D>- Returns:
- containing space
-
getZero
Get the null vector of the vectorial space or origin point of the affine space.- Specified by:
getZeroin interfaceVector<Euclidean1D>- Returns:
- null vector of the vectorial space or origin point of the affine space
-
getNorm1
public double getNorm1()Get the L1 norm for the vector.- Specified by:
getNorm1in interfaceVector<Euclidean1D>- Returns:
- L1 norm for the vector
-
getNorm
public double getNorm()Get the L2 norm for the vector.- Specified by:
getNormin interfaceVector<Euclidean1D>- Returns:
- Euclidean norm for the vector
-
getNormSq
public double getNormSq()Get the square of the norm for the vector.- Specified by:
getNormSqin interfaceVector<Euclidean1D>- Returns:
- square of the Euclidean norm for the vector
-
getNormInf
public double getNormInf()Get the L∞ norm for the vector.- Specified by:
getNormInfin interfaceVector<Euclidean1D>- Returns:
- L∞ norm for the vector
-
add
Add a vector to the instance.- Specified by:
addin interfaceVector<Euclidean1D>- Parameters:
v- vector to add- Returns:
- a new vector
-
add
Add a scaled vector to the instance.- Specified by:
addin interfaceVector<Euclidean1D>- Parameters:
factor- scale factor to apply to v before adding itv- vector to add- Returns:
- a new vector
-
subtract
Subtract a vector from the instance.- Specified by:
subtractin interfaceVector<Euclidean1D>- Parameters:
p- vector to subtract- Returns:
- a new vector
-
subtract
Subtract a scaled vector from the instance.- Specified by:
subtractin interfaceVector<Euclidean1D>- Parameters:
factor- scale factor to apply to v before subtracting itv- vector to subtract- Returns:
- a new vector
-
normalize
Get a normalized vector aligned with the instance.- Specified by:
normalizein interfaceVector<Euclidean1D>- Returns:
- a new normalized vector
- Throws:
MathArithmeticException- if the norm is zero
-
negate
Get the opposite of the instance.- Specified by:
negatein interfaceVector<Euclidean1D>- Returns:
- a new vector which is opposite to the instance
-
scalarMultiply
Multiply the instance by a scalar.- Specified by:
scalarMultiplyin interfaceVector<Euclidean1D>- Parameters:
a- scalar- Returns:
- a new vector
-
isNaN
public boolean isNaN()Returns true if any coordinate of this point is NaN; false otherwise- Specified by:
isNaNin interfacePoint<Euclidean1D>- Returns:
- true if any coordinate of this point is NaN; false otherwise
-
isInfinite
public boolean isInfinite()Returns true if any coordinate of this vector is infinite and none are NaN; false otherwise- Specified by:
isInfinitein interfaceVector<Euclidean1D>- Returns:
- true if any coordinate of this vector is infinite and none are NaN; false otherwise
-
distance1
Compute the distance between the instance and another vector according to the L1 norm.Calling this method is equivalent to calling:
q.subtract(p).getNorm1()except that no intermediate vector is built- Specified by:
distance1in interfaceVector<Euclidean1D>- Parameters:
p- second vector- Returns:
- the distance between the instance and p according to the L1 norm
-
distance
Deprecated.as of 3.3, replaced withdistance(Point)Compute the distance between the instance and another vector according to the L2 norm.Calling this method is equivalent to calling:
q.subtract(p).getNorm()except that no intermediate vector is built- Specified by:
distancein interfaceVector<Euclidean1D>- Parameters:
p- second vector- Returns:
- the distance between the instance and p according to the L2 norm
-
distance
Compute the distance between the instance and another point.- Specified by:
distancein interfacePoint<Euclidean1D>- Parameters:
p- second point- Returns:
- the distance between the instance and p
-
distanceInf
Compute the distance between the instance and another vector according to the L∞ norm.Calling this method is equivalent to calling:
q.subtract(p).getNormInf()except that no intermediate vector is built- Specified by:
distanceInfin interfaceVector<Euclidean1D>- Parameters:
p- second vector- Returns:
- the distance between the instance and p according to the L∞ norm
-
distanceSq
Compute the square of the distance between the instance and another vector.Calling this method is equivalent to calling:
q.subtract(p).getNormSq()except that no intermediate vector is built- Specified by:
distanceSqin interfaceVector<Euclidean1D>- Parameters:
p- second vector- Returns:
- the square of the distance between the instance and p
-
dotProduct
Compute the dot-product of the instance and another vector.- Specified by:
dotProductin interfaceVector<Euclidean1D>- Parameters:
v- second vector- Returns:
- the dot product this.v
-
distance
Compute the distance between two vectors according to the L2 norm.Calling this method is equivalent to calling:
p1.subtract(p2).getNorm()except that no intermediate vector is built- Parameters:
p1- first vectorp2- second vector- Returns:
- the distance between p1 and p2 according to the L2 norm
-
distanceInf
Compute the distance between two vectors according to the L∞ norm.Calling this method is equivalent to calling:
p1.subtract(p2).getNormInf()except that no intermediate vector is built- Parameters:
p1- first vectorp2- second vector- Returns:
- the distance between p1 and p2 according to the L∞ norm
-
distanceSq
Compute the square of the distance between two vectors.Calling this method is equivalent to calling:
p1.subtract(p2).getNormSq()except that no intermediate vector is built- Parameters:
p1- first vectorp2- second vector- Returns:
- the square of the distance between p1 and p2
-
equals
Test for the equality of two 1D vectors.If all coordinates of two 1D vectors are exactly the same, and none are
Double.NaN, the two 1D vectors are considered to be equal.NaNcoordinates are considered to affect globally the vector and be equals to each other - i.e, if either (or all) coordinates of the 1D vector are equal toDouble.NaN, the 1D vector is equal toNaN. -
hashCode
public int hashCode()Get a hashCode for the 1D vector.All NaN values have the same hash code.
-
toString
Get a string representation of this vector. -
toString
Get a string representation of this vector.- Specified by:
toStringin interfaceVector<Euclidean1D>- Parameters:
format- the custom format for components- Returns:
- a string representation of this vector
-
distance(Point)