public class LengthMatrix extends TypedDoubleMatrixRel<LengthUnit,LengthMatrix,MutableLengthMatrix,Length>
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2015-09-29 14:14:28 +0200 (Tue, 29 Sep 2015) $, @version $Revision: 73 $, by $Author: pknoppers $, initial
version Sep 5, 2015
DoubleMatrix.Abs<U extends Unit<U>>, DoubleMatrix.Rel<U extends Unit<U>>data| Constructor and Description |
|---|
LengthMatrix(double[][] values,
LengthUnit unit,
StorageType storageType)
Construct a new Relative Immutable Double LengthMatrix.
|
LengthMatrix(DoubleMatrixData data,
LengthUnit unit)
Construct a new Relative Immutable Double LengthMatrix.
|
LengthMatrix(Length[][] values,
StorageType storageType)
Construct a new Relative Immutable Double LengthMatrix.
|
| Modifier and Type | Method and Description |
|---|---|
Length |
get(int row,
int column)
Retrieve the value stored at a specified row and column as a DoubleScalar.
|
protected MutableLengthMatrix |
instantiateMutableType(DoubleMatrixData dmd,
LengthUnit unit)
Construct a new Relative Mutable DoubleMatrix of the right type.
|
protected LengthMatrix |
instantiateType(DoubleMatrixData dmd,
LengthUnit unit)
Construct a new Relative Immutable DoubleMatrix of the right type.
|
PositionMatrix |
toAbs()
Translate the relative matrix into an absolute matrix (e.g., before or after a multiplication or division).
|
divide, minus, mutable, plus, times, toDense, toSparsedivide, minus, plus, plus, timescardinality, checkIndex, checkSize, checkSize, checkUnit, columns, determinant, divide, ensureRectangularAndNonEmpty, ensureRectangularAndNonEmpty, equals, getData, getInUnit, getInUnit, getSI, getStorageType, getValuesInUnit, getValuesInUnit, getValuesSI, hashCode, instantiateAbs, instantiateRel, minus, minus, minus, plus, plus, rows, times, toString, toString, toString, toString, zSumexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelativepublic LengthMatrix(double[][] values,
LengthUnit unit,
StorageType storageType)
throws ValueException
values - double[][]; the values of the entries in the new Relative Immutable Double LengthMatrixunit - U; the unit of the new Relative Immutable Double LengthMatrixstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values is nullpublic LengthMatrix(Length[][] values, StorageType storageType) throws ValueException
values - DoubleScalar.Rel<U>[][]; the values of the entries in the new Relative Immutable Double LengthMatrixstorageType - the data type to use (e.g., DENSE or SPARSE)ValueException - when values has zero entriesLengthMatrix(DoubleMatrixData data, LengthUnit unit)
data - an internal data objectunit - the unitprotected final LengthMatrix instantiateType(DoubleMatrixData dmd, LengthUnit unit)
instantiateType in class TypedDoubleMatrixRel<LengthUnit,LengthMatrix,MutableLengthMatrix,Length>dmd - an internal data objectunit - the unitprotected final MutableLengthMatrix instantiateMutableType(DoubleMatrixData dmd, LengthUnit unit)
instantiateMutableType in class TypedDoubleMatrixRel<LengthUnit,LengthMatrix,MutableLengthMatrix,Length>dmd - an internal data objectunit - the unitpublic final Length get(int row, int column) throws ValueException
get in interface DoubleMatrixInterface<LengthUnit>get in class TypedDoubleMatrixRel<LengthUnit,LengthMatrix,MutableLengthMatrix,Length>row - int; row of the value to retrievecolumn - int; column of the value to retrieveValueException - when row or column out of range (row < 0 or row >= rows() or column < 0 or column >=
columns())public final PositionMatrix toAbs()
Copyright © 2015–2016 Delft University of Technology. All rights reserved.