public interface Vector
Vector.| Modifier and Type | Method and Description |
|---|---|
double |
l1Norm()
Here as a convenience.
|
Vector |
linearCombination(Number a0,
Number a1,
Vector v1)
Almost certainly would want scalars to be primitive,
not Object references.
|
double l1Norm()
Vector linearCombination(Number a0, Number a1, Vector v1)
Here as a convenience. Doesn't belong in a vector interface, because same vector can be in many different linear spaces, with differing interpretations of linear combination.
Copyright © 2017. All rights reserved.