classifier
Class MatriceCategorie

java.lang.Object
  |
  +--classifier.MatriceCategorie

public class MatriceCategorie
extends java.lang.Object

Implementa la matrice delle categorie. Collects the vector of statistiche from all categories.


Constructor Summary
MatriceCategorie(float[][] stats)
           
MatriceCategorie(MatriceCategorie MC)
          Copy constructor.
 
Method Summary
 void add(MatriceCategorie MC)
          Somma, elemento per elemento, due matrici.
 void add(java.util.Vector categories, float value)
          Somma un valore agli elementi della matrice specificati da un Vector di Categoria.
 void clear()
          Azzera tutta la matrice.
 float[][] getStats()
           
 void print(TabellaCategorie TC)
           
 void product(float value)
          Moltiplica tutti gli elementi della matrice per un float.
 void product(MatriceCategorie MC)
          Moltiplica, elemento per elemento, due matrici.
 void product(java.util.Vector categories, float value)
          Moltiplica un valore agli elementi della matrice specificati da un Vector di Categoria.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MatriceCategorie

public MatriceCategorie(float[][] stats)

MatriceCategorie

public MatriceCategorie(MatriceCategorie MC)
Copy constructor. La nuova matrice NON condivide la matrice privata statistiche con MC.
Method Detail

product

public void product(float value)
Moltiplica tutti gli elementi della matrice per un float.

add

public void add(java.util.Vector categories,
                float value)
Somma un valore agli elementi della matrice specificati da un Vector di Categoria.

product

public void product(java.util.Vector categories,
                    float value)
Moltiplica un valore agli elementi della matrice specificati da un Vector di Categoria.

add

public void add(MatriceCategorie MC)
Somma, elemento per elemento, due matrici.

product

public void product(MatriceCategorie MC)
Moltiplica, elemento per elemento, due matrici.

clear

public void clear()
Azzera tutta la matrice.

getStats

public float[][] getStats()
Returns:
matrice statistiche.

print

public void print(TabellaCategorie TC)