9 lines
181 B
C
9 lines
181 B
C
#ifndef MATRIX_PRINT_H
|
|
#define MATRIX_PRINT_H
|
|
#include "sparse_matrix.h"
|
|
|
|
void print_vector(double *vector, int size);
|
|
void print_sparse_matrix(const SparseMatrix *matrix);
|
|
|
|
#endif
|