vkostyukov / la4j

Linear Algebra for Java
http://la4j.org
Apache License 2.0
373 stars 109 forks source link

Better name for `pipeTo` #238

Closed vkostyukov closed 9 years ago

vkostyukov commented 9 years ago

The pipeTo is kinda code name for a new concept. We should come up within a better name this release.

Here is the candidates I have:

SamoylovMD commented 9 years ago

Upvote for apply.

vkostyukov commented 9 years ago

The examples of apply usage would be look like:

Matrix a = ???
Vector b = ???
Matrix[] lu = a.apply(LinearAlgebra.LU);
Vector x = a.apply(LinearAlgebra.GAUSSIAN, b);