Class AbstractDoubleVectorAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,AV extends AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>,RV extends AbstractDoubleVectorRelWithAbs<AU,A,AV,RU,R,RV>>
java.lang.Object
org.djunits.value.AbstractValue<U,T>
org.djunits.value.AbstractIndexedValue<U,S,V,DoubleVectorData>
org.djunits.value.vdouble.vector.base.AbstractDoubleVector<AU,A,AV>
org.djunits.value.vdouble.vector.base.AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>
- Type Parameters:
AU
- the absolute unit belonging to the relative unitA
- the absolute scalar type belonging to the absolute vector typeAV
- the (immutable or mutable) absolute vector typeRU
- the relative unit belonging to the absolute unitR
- the relative scalar type belonging to the relative vector typeRV
- the relative (immutable or mutable) vector type with this unit
- All Implemented Interfaces:
Serializable
,Cloneable
,Iterable<A>
,Absolute
,Vector<AU,A,AV>
,Vector.Abs<AU,A,AV,RU,R,RV>
,ValueFunctions<AU,AV>
,IndexedValue<AU,A,AV>
,Value<AU,AV>
,DoubleVectorInterface<AU,A,AV>
- Direct Known Subclasses:
AbsoluteTemperatureVector
,DirectionVector
,PositionVector
,TimeVector
public abstract class AbstractDoubleVectorAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,AV extends AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>,RV extends AbstractDoubleVectorRelWithAbs<AU,A,AV,RU,R,RV>> extends AbstractDoubleVector<AU,A,AV> implements Vector.Abs<AU,A,AV,RU,R,RV>, Absolute
AbstractMutableDoubleVectorRelWithAbs.java.
Copyright (c) 2019-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
- Author:
- Alexander Verbraeck
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class org.djunits.value.vdouble.vector.base.AbstractDoubleVector
AbstractDoubleVector.Itr
Nested classes/interfaces inherited from interface org.djunits.value.base.Vector
Vector.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends Scalar<AU,A>,AV extends Vector.Abs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends Scalar<RU,R>,RV extends Vector.RelWithAbs<AU,A,AV,RU,R,RV>>, Vector.Rel<U extends Unit<U>,S extends Scalar<U,S>,RV extends Vector.Rel<U,S,RV>>, Vector.RelWithAbs<AU extends AbsoluteLinearUnit<AU,RU>,A extends Scalar<AU,A>,AV extends Vector.Abs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends Scalar<RU,R>,RV extends Vector.RelWithAbs<AU,A,AV,RU,R,RV>>
-
Field Summary
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractDoubleVectorAbs(DoubleVectorData data, AU unit)
Construct a new Relative Mutable DoubleVector. -
Method Summary
Modifier and Type Method Description AV
decrementBy(R decrement)
Decrement all values of this vector by the decrement.AV
decrementBy(RV decrement)
Decrement all values of this vector by the decrement on a value by value basis.abstract R
instantiateScalarRelSI(double valueSI, RU displayUunit)
Instantiate a new relative scalar for the class of this absolute vector.abstract RV
instantiateVectorRel(DoubleVectorData dvd, RU displayUnit)
Instantiate a new relative vector of the class of this absolute vector.RV
minus(AV decrement)
Subtract an absolute vector from this absolute vector.AV
minus(RV decrement)
Subtract a relative vector from this absolute vector.AV
plus(RV increment)
Add a relative vector to this absolute vector.Methods inherited from class org.djunits.value.vdouble.vector.base.AbstractDoubleVector
abs, assign, ceil, checkIndex, checkSize, equals, floor, get, getData, getInUnit, getInUnit, getScalars, getSI, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, iterator, neg, rint, set, setData, setInUnit, setInUnit, setSI, size, toDense, toSparse, toString, toString, toString, toString
Methods inherited from class org.djunits.value.AbstractIndexedValue
cardinality, checkCopyOnWrite, clone, getStorageType, immutable, isCopyOnWrite, isDense, isMutable, isSparse, mutable, setCopyOnWrite, setMutable
Methods inherited from class org.djunits.value.AbstractValue
getDisplayUnit, isAbsolute, isRelative, setDisplayUnit
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.djunits.value.vdouble.vector.base.DoubleVectorInterface
instantiateScalarSI, instantiateVector
Methods inherited from interface org.djunits.value.IndexedValue
cardinality, getScalarClass, getStorageType, immutable, isDense, isMutable, isSparse, mutable, toDense, toSparse
Methods inherited from interface org.djunits.value.Value
getDisplayUnit, isAbsolute, isRelative, setDisplayUnit, toString, toString, toString, toString
-
Constructor Details
-
AbstractDoubleVectorAbs
Construct a new Relative Mutable DoubleVector.- Parameters:
data
- DoubleVectorData; an internal data objectunit
- U; the unit
-
-
Method Details
-
plus
Add a relative vector to this absolute vector. A new absolute vector is returned. The display unit of the new vector is the display unit of this absolute vector. The addition is done value by value and the result is stored in a new vector. If both operands are sparse, the result is a sparse vector, otherwise the result is a dense vector.- Specified by:
plus
in interfaceVector.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,AV extends AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>,RV extends AbstractDoubleVectorRelWithAbs<AU,A,AV,RU,R,RV>>
- Parameters:
increment
- RV; the relative vector (mutable or immutable, sparse or dense) to add to this absolute vector- Returns:
- AIV; the sum of this value and the operand as a new absolute, immutable vector
- Throws:
ValueRuntimeException
- in case this vector and the operand have a different size
-
minus
Subtract a relative vector from this absolute vector. A new absolute vector is returned. The display unit of the new vector is the display unit of this absolute vector. The subtraction is done value by value and the result is stored in a new vector. If both operands are sparse, the result is a sparse vector, otherwise the result is a dense vector.- Specified by:
minus
in interfaceVector.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,AV extends AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>,RV extends AbstractDoubleVectorRelWithAbs<AU,A,AV,RU,R,RV>>
- Parameters:
decrement
- RV; the relative vector (mutable or immutable, sparse or dense) to subtract from this absolute vector- Returns:
- AIV; the difference of this value and the operand as a new absolute, immutable vector
- Throws:
ValueRuntimeException
- in case this vector and the operand have a different size
-
minus
Subtract an absolute vector from this absolute vector. A new relative vector is returned. The display unit of the new vector is the display unit of relative counterpart of the display unit of this absolute vector. The subtraction is done value by value and the result is stored in a new vector. If both operands are sparse, the result is a sparse vector, otherwise the result is a dense vector.- Specified by:
minus
in interfaceVector.Abs<AU extends AbsoluteLinearUnit<AU,RU>,A extends AbstractDoubleScalarAbs<AU,A,RU,R>,AV extends AbstractDoubleVectorAbs<AU,A,AV,RU,R,RV>,RU extends Unit<RU>,R extends AbstractDoubleScalarRelWithAbs<AU,A,RU,R>,RV extends AbstractDoubleVectorRelWithAbs<AU,A,AV,RU,R,RV>>
- Parameters:
decrement
- AV; the absolute vector (mutable or immutable, sparse or dense) to subtract from this absolute vector- Returns:
- RIV; the difference of this value and the operand as a new relative, immutable vector
- Throws:
ValueRuntimeException
- in case this vector and the operand have a different size
-
decrementBy
Decrement all values of this vector by the decrement. This only works if this vector is mutable.- Parameters:
decrement
- R; the scalar by which to decrement all values- Returns:
- AV; this modified vector
- Throws:
ValueRuntimeException
- in case this vector is immutable
-
decrementBy
Decrement all values of this vector by the decrement on a value by value basis. This only works if this vector is mutable.- Parameters:
decrement
- RV; the vector that contains the values by which to decrement the corresponding values- Returns:
- AV; this modified vector
- Throws:
ValueRuntimeException
- in case this vector is immutable, when the sizes of the vectors differ, ordecrement
is null
-
instantiateVectorRel
Instantiate a new relative vector of the class of this absolute vector. This can be used instead of the DoubleVector.instiantiate() methods in case another vector of this absolute vector class is known. The method is faster than DoubleVector.instantiate, and it will also work if the vector is user-defined.- Parameters:
dvd
- DoubleVectorData; the data used to instantiate the vectordisplayUnit
- RU; the display unit of the relative vector- Returns:
- RV; a relative vector of the correct type, belonging to this absolute vector type
-
instantiateScalarRelSI
Instantiate a new relative scalar for the class of this absolute vector. This can be used instead of the DoubleScalar.instiantiate() methods in case a vector of this class is known. The method is faster than DoubleScalar.instantiate, and it will also work if the vector and/or scalar are user-defined.- Parameters:
valueSI
- double; the SI value of the relative scalardisplayUunit
- RU; the unit in which the relative value will be displayed- Returns:
- R; a relative scalar of the correct type, belonging to this absolute vector type
-