[math] Sparse matrix from dense

This commit is contained in:
Al
2016-01-08 00:48:57 -05:00
parent ba8fc716df
commit 6b164d263e
2 changed files with 30 additions and 0 deletions

11
src/sparse_matrix_utils.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef SPARSE_MATRIX_UTILS_H
#define SPARSE_MATRIX_UTILS_H
#include <stdlib.h>
#include "sparse_matrix.h"
#include "matrix.h"
sparse_matrix_t *sparse_matrix_new_from_matrix(matrix_t *matrix);
#endif