Package samer.maths
Interface Mat
-
- All Known Implementing Classes:
- Matrix, RowColumn, Vec.ForArray
public interface Mat
This is an interface for an element-wise addressable matrix. Not generally used for computation, but for user interface purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description double
get(int i, int j)
int
height()
void
set(int i, int j, double t)
int
width()
-