Interface DoubleConsumer
public interface DoubleConsumer
Double precision matrix element stream consumer.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(int i, int j, double x) Accepts one matrix element and performs the operation on the given arguments.
-
Method Details
-
accept
void accept(int i, int j, double x) Accepts one matrix element and performs the operation on the given arguments.- Parameters:
i- the row index.j- the column index.x- the matrix cell value.
-