Package smile.math.matrix.fp32
Interface FloatConsumer
public interface FloatConsumer
Single precision matrix element stream consumer.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(int i, int j, float x) Accepts one matrix element and performs the operation on the given arguments.
-
Method Details
-
accept
void accept(int i, int j, float 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.
-