Package org.la4j.matrix.functor
Interface MatrixProcedure
public interface MatrixProcedure
A matrix procedure that performs an action of every matrix element.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(int i, int j, double value) Acts on a matrix element.
-
Method Details
-
apply
void apply(int i, int j, double value) Acts on a matrix element.- Parameters:
i
- the row indexj
- the columnsvalue
- the element's value
-