Package org.jfree.data
Class NormalizedMatrixSeries
java.lang.Object
org.jfree.data.Series
org.jfree.data.MatrixSeries
org.jfree.data.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.- Since:
- Jun 18, 2003
- Author:
- Barak Naveh
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static doubleDEFAULT_SCALE_FACTORThe default scale factor. -
Constructor Summary
Constructors Constructor Description NormalizedMatrixSeries(String name, int rows, int columns)Constructor for NormalizedMatrixSeries. -
Method Summary
Modifier and Type Method Description NumbergetItem(int itemIndex)Returns an item.doublegetScaleFactor()Returns the factor that multiplies each item in this series when observed using getItem mehtod.voidsetScaleFactor(double factor)Sets the factor that multiplies each item in this series when observed using getItem mehtod.voidupdate(int i, int j, double mij)Updates the value of the specified item in this matrix series.voidzeroAll()Sets all matrix values to zero and sends aSeriesChangeEventto all registered listeners.Methods inherited from class org.jfree.data.MatrixSeries
equals, get, getColumnsCount, getItemColumn, getItemCount, getItemRow, getRowCountMethods inherited from class org.jfree.data.Series
addChangeListener, addPropertyChangeListener, clone, fireSeriesChanged, getDescription, getName, getNotify, hashCode, removeChangeListener, removePropertyChangeListener, setDescription, setName, setNotify
-
Field Details
-
DEFAULT_SCALE_FACTOR
public static final double DEFAULT_SCALE_FACTORThe default scale factor.- See Also:
- Constant Field Values
-
-
Constructor Details
-
NormalizedMatrixSeries
Constructor for NormalizedMatrixSeries.- Parameters:
name- the series name.rows- the number of rows.columns- the number of columns.
-
-
Method Details
-
getItem
Returns an item.- Overrides:
getItemin classMatrixSeries- Parameters:
itemIndex- the index.- Returns:
- The value.
- See Also:
MatrixSeries.getItem(int)
-
setScaleFactor
public void setScaleFactor(double factor)Sets the factor that multiplies each item in this series when observed using getItem mehtod.- Parameters:
factor- new factor to set.- See Also:
DEFAULT_SCALE_FACTOR
-
getScaleFactor
public double getScaleFactor()Returns the factor that multiplies each item in this series when observed using getItem mehtod.- Returns:
- the factor
-
update
public void update(int i, int j, double mij)Description copied from class:MatrixSeriesUpdates the value of the specified item in this matrix series.- Overrides:
updatein classMatrixSeries- Parameters:
i- the row of the item.j- the column of the item.mij- the new value for the item.- See Also:
MatrixSeries.update(int, int, double)
-
zeroAll
public void zeroAll()Description copied from class:MatrixSeriesSets all matrix values to zero and sends aSeriesChangeEventto all registered listeners.- Overrides:
zeroAllin classMatrixSeries- See Also:
MatrixSeries.zeroAll()
-