simple C matrix implementation
Installation | Getting Up And Running | Examples | API | See Also
matrix is a simple C matrix implementation. The main feature are:
- Currently just the data structure and some simple operators on it.
# using clib
clib install e-k-m/matrix
# else ...
make <target>
matrix_t *m = matrix_new(20, 10);
assert(matrix_get(a, 0, 0) == 0.0);
see matrix.h