vnl_io_sparse_matrix.h
Go to the documentation of this file.
1 // This is core/vnl/io/vnl_io_sparse_matrix.h
2 #ifndef vnl_io_sparse_matrix_h
3 #define vnl_io_sparse_matrix_h
4 //:
5 // \file
6 // \author Louise Butcher
7 // \date 20-Mar-2001
8 
10 #include <vsl/vsl_binary_io.h>
11 
12 //: Binary save vnl_sparse_matrix to stream.
13 // \relatesalso vnl_sparse_matrix
14 template <class T>
15 void vsl_b_write(vsl_b_ostream & os, const vnl_sparse_matrix<T> & v);
16 
17 //: Binary load vnl_sparse_matrix from stream.
18 // \relatesalso vnl_sparse_matrix
19 template <class T>
20 void vsl_b_read(vsl_b_istream & is, vnl_sparse_matrix<T> & v);
21 
22 //: Print human readable summary of object to a stream
23 // \relatesalso vnl_sparse_matrix
24 template <class T>
25 void vsl_print_summary(std::ostream & os,const vnl_sparse_matrix<T> & b);
26 
27 #endif // vnl_io_sparse_matrix_h
void vsl_print_summary(std::ostream &os, vnl_bignum const &b)
Print human readable summary of object to a stream.
Simple sparse matrix.
#define v
Definition: vnl_vector.h:42
void vsl_b_read(vsl_b_istream &is, vnl_bignum &v)
Binary load vnl_bignum from stream.
void vsl_b_write(vsl_b_ostream &os, vnl_bignum const &v)
Binary save vnl_bignum to stream.
Simple sparse matrix.