aboutsummaryrefslogtreecommitdiff
path: root/nerv/lib/matrix/generic/matrix.h
diff options
context:
space:
mode:
Diffstat (limited to 'nerv/lib/matrix/generic/matrix.h')
-rw-r--r--nerv/lib/matrix/generic/matrix.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/nerv/lib/matrix/generic/matrix.h b/nerv/lib/matrix/generic/matrix.h
new file mode 100644
index 0000000..9d44e6d
--- /dev/null
+++ b/nerv/lib/matrix/generic/matrix.h
@@ -0,0 +1,4 @@
+#include "../matrix.h"
+Matrix *nerv_matrix_(create)(long nrow, long ncol, Status *status);
+void nerv_matrix_(destroy)(Matrix *self, Status *status);
+Matrix *nerv_matrix_(getrow)(Matrix *self, int row);