Class NormalizedMatrixSeries

All Implemented Interfaces:
Serializable, Cloneable

public class NormalizedMatrixSeries
extends MatrixSeries
Represents a dense normalized matrix M[i,j] where each Mij item of the matrix has a value (default is 0). When a matrix item is observed using getItem() method, it is normalized, that is, divided by the total sum of all items. It can be also be scaled by setting a scale factor.
See Also:
Serialized Form
  • Field Details

  • Constructor Details

    • NormalizedMatrixSeries

      public NormalizedMatrixSeries​(String name, int rows, int columns)
      Constructor for NormalizedMatrixSeries.
      Parameters:
      name - the series name.
      rows - the number of rows.
      columns - the number of columns.
  • Method Details