Package samer.maths
Interface Vec
-
- All Known Implementing Classes:
- Probe, RowColumn, Vec.ForArray, VVector
public interface Vec
Interface for a vector that can be access via either an iterator (read only), or a double array (read/write) or via a Mat interface.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static class
Vec.ForArray
An implementation of Vec that uses an array to store the values.static interface
Vec.InputIterator
static interface
Vec.Iterator
access vector by iterator
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description double[]
array()
Vec.Iterator
iterator()
Mat
mat()
int
size()
-
-
-
Method Detail
-
size
int size()
-
iterator
Vec.Iterator iterator()
-
array
double[] array()
-
mat
Mat mat()
-
-