Class FlowVolumeMatrix

All Implemented Interfaces:
Serializable, Cloneable, Relative<FlowVolumeUnit,FlowVolumeMatrix>, Value<FlowVolumeUnit,FlowVolumeMatrix>

@Generated(value="org.djunits.generator.GenerateDJUNIT", date="2023-07-23T14:06:38.224104100Z") public class FlowVolumeMatrix extends DoubleMatrixRel<FlowVolumeUnit,FlowVolume,FlowVolumeVector,FlowVolumeMatrix>
Immutable Double FlowVolumeMatrix, a matrix of values with a FlowVolumeUnit.

Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.

Author:
Alexander Verbraeck, Peter Knoppers
See Also:
  • Constructor Details

    • FlowVolumeMatrix

      public FlowVolumeMatrix(DoubleMatrixData data, FlowVolumeUnit displayUnit)
      Construct a FlowVolumeMatrix from an internal data object.
      Parameters:
      data - DoubleMatrixData; the internal data object for the matrix
      displayUnit - FlowVolumeUnit; the display unit of the matrix data
    • FlowVolumeMatrix

      public FlowVolumeMatrix(double[][] data, FlowVolumeUnit displayUnit, StorageType storageType)
      Construct a FlowVolumeMatrix from a double[][] object. The double values are expressed in the displayUnit, and will be printed using the displayUnit.
      Parameters:
      data - double[][]; the data for the matrix, expressed in the displayUnit
      displayUnit - FlowVolumeUnit; the unit of the values in the data array, and display unit when printing
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(double[][] data, FlowVolumeUnit displayUnit)
      Construct a FlowVolumeMatrix from a double[][] object. The double values are expressed in the displayUnit. Assume that the StorageType is DENSE since we offer the data as an array of an array.
      Parameters:
      data - double[][]; the data for the matrix
      displayUnit - FlowVolumeUnit; the unit of the values in the data array, and display unit when printing
    • FlowVolumeMatrix

      public FlowVolumeMatrix(double[][] data, StorageType storageType)
      Construct a FlowVolumeMatrix from a double[][] object with SI-unit values.
      Parameters:
      data - double[][]; the data for the matrix, in SI units
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(double[][] data)
      Construct a FlowVolumeMatrix from a double[][] object with SI-unit values. Assume that the StorageType is DENSE since we offer the data as an array of an array.
      Parameters:
      data - double[][]; the data for the matrix, in SI units
    • FlowVolumeMatrix

      public FlowVolumeMatrix(FlowVolume[][] data, FlowVolumeUnit displayUnit, StorageType storageType)
      Construct a FlowVolumeMatrix from an array of an array of FlowVolume objects. The FlowVolume values are each expressed in their own unit, but will be internally stored as SI values, all expressed in the displayUnit when printing.
      Parameters:
      data - FlowVolume[][]; the data for the matrix
      displayUnit - FlowVolumeUnit; the display unit of the values when printing
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(FlowVolume[][] data, FlowVolumeUnit displayUnit)
      Construct a FlowVolumeMatrix from an array of an array of FlowVolume objects. The FlowVolume values are each expressed in their own unit, but will be internally stored as SI values, all expressed in the displayUnit when printing. Assume that the StorageType is DENSE since we offer the data as an array of an array.
      Parameters:
      data - FlowVolume[][]; the data for the matrix
      displayUnit - FlowVolumeUnit; the display unit of the values when printing
    • FlowVolumeMatrix

      public FlowVolumeMatrix(FlowVolume[][] data, StorageType storageType)
      Construct a FlowVolumeMatrix from an array of an array of FlowVolume objects. The FlowVolume values are each expressed in their own unit, but will be internally stored as SI values, and expressed using SI units when printing. since we offer the data as an array of an array.
      Parameters:
      data - FlowVolume[][]; the data for the matrix
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(FlowVolume[][] data)
      Construct a FlowVolumeMatrix from an array of an array of FlowVolume objects. The FlowVolume values are each expressed in their own unit, but will be internally stored as SI values, and expressed using SI units when printing. Assume that the StorageType is DENSE since we offer the data as an array of an array.
      Parameters:
      data - FlowVolume[][]; the data for the matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(Collection<DoubleSparseValue<FlowVolumeUnit,FlowVolume>> data, FlowVolumeUnit displayUnit, int rows, int cols, StorageType storageType)
      Construct a FlowVolumeMatrix from a (sparse) collection of DoubleSparseValue objects. The displayUnit indicates the unit in which the values in the collection are expressed, as well as the unit in which they will be printed.
      Parameters:
      data - Collection<DoubleSparseValue>; the data for the matrix
      displayUnit - FlowVolumeUnit; the display unit of the matrix data, and the unit of the data points
      rows - int; the number of rows of the matrix
      cols - int; the number of columns of the matrix
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(Collection<DoubleSparseValue<FlowVolumeUnit,FlowVolume>> data, FlowVolumeUnit displayUnit, int rows, int cols)
      Construct a FlowVolumeMatrix from a (sparse) collection of DoubleSparseValue objects. The displayUnit indicates the unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Assume the storage type is SPARSE, since we offer the data as a collection.
      Parameters:
      data - Collection<DoubleSparseValue>; the data for the matrix
      displayUnit - FlowVolumeUnit; the display unit of the matrix data, and the unit of the data points
      rows - int; the number of rows of the matrix
      cols - int; the number of columns of the matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(Collection<DoubleSparseValue<FlowVolumeUnit,FlowVolume>> data, int rows, int cols, StorageType storageType)
      Construct a FlowVolumeMatrix from a (sparse) collection of DoubleSparseValue objects. The displayUnit indicates the unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Use the SI unit or base unit as the displayUnit.
      Parameters:
      data - Collection<DoubleSparseValue>; the data for the matrix
      rows - int; the number of rows of the matrix
      cols - int; the number of columns of the matrix
      storageType - StorageType; the StorageType (SPARSE or DENSE) to use for constructing the Matrix
    • FlowVolumeMatrix

      public FlowVolumeMatrix(Collection<DoubleSparseValue<FlowVolumeUnit,FlowVolume>> data, int rows, int cols)
      Construct a FlowVolumeMatrix from a (sparse) collection of DoubleSparseValue objects. The displayUnit indicates the unit in which the values in the collection are expressed, as well as the unit in which they will be printed. Use the SI unit or base unit as the displayUnit. Assume the storage type is SPARSE, since we offer the data as a collection.
      Parameters:
      data - Collection<DoubleSparseValue>; the data for the matrix
      rows - int; the number of rows of the matrix
      cols - int; the number of columns of the matrix
  • Method Details