Interface MatrixFunction
public interface MatrixFunction
A matrix function that takes an element with its indices and produces
a new value.
-
Method Summary
Modifier and TypeMethodDescriptiondoubleevaluate(int i, int j, double value) Evaluates a specified element.
-
Method Details
-
evaluate
double evaluate(int i, int j, double value) Evaluates a specified element.- Parameters:
i- the row indexj- the column indexvalue- the element's value- Returns:
- a new element's value
-