edu.northwestern.at.utils.math.matrix
Interface MatrixConditionalEBETransformation


public interface MatrixConditionalEBETransformation

MatrixConditionalEBETransformation.

Encapsulates a conditional operation that can be performed on each element of a matrix depending on their position


Method Summary
 double transform(int row, int column, double element)
          Transforms an elements value into another value.
 

Method Detail

transform

double transform(int row,
                 int column,
                 double element)
Transforms an elements value into another value.

Parameters:
row - Row to which the element belongs.
column - Column to which the element belongs.
element - Value of the element at row,column.
Returns:
Transformed value.