Class DoubleSparseValue<U extends Unit<U>,S extends DoubleScalar<U,S>>
java.lang.Object
org.djunits.value.vdouble.matrix.base.DoubleSparseValue<U,S>
- Type Parameters:
U- the unit type of the valueS- the scalar type of the value
- All Implemented Interfaces:
Serializable
public class DoubleSparseValue<U extends Unit<U>,S extends DoubleScalar<U,S>>
extends Object
implements Serializable
Data point for a matrix that can be used for constructing sparse matrices.
Copyright (c) 2019-2025 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:
-
Constructor Summary
ConstructorsConstructorDescriptionDoubleSparseValue(int row, int column, double valueSI) Create a data point for a sparse matrix.DoubleSparseValue(int row, int column, double valueInUnit, U unit) Create a data point for a sparse matrix.DoubleSparseValue(int row, int column, S value) Create a data point for a sparse matrix. -
Method Summary
-
Constructor Details
-
DoubleSparseValue
Create a data point for a sparse matrix.- Parameters:
row- the row of the sparse data point in the matrixcolumn- the column of the sparse data point in the matrixvalue- the value in the given unit of the data point in the matrix
-
DoubleSparseValue
Create a data point for a sparse matrix.- Parameters:
row- the row of the sparse data point in the matrixcolumn- the column of the sparse data point in the matrixvalueInUnit- the value in the given unit of the data point in the matrixunit- the unit of the value
-
DoubleSparseValue
public DoubleSparseValue(int row, int column, double valueSI) Create a data point for a sparse matrix.- Parameters:
row- the row of the sparse data point in the matrixcolumn- the column of the sparse data point in the matrixvalueSI- the SI value of the data point in the matrix
-
-
Method Details