vnl_io_matrix.h
Go to the documentation of this file.
1 // This is core/vnl/io/vnl_io_matrix.h
2 #ifndef vnl_io_matrix_h
3 #define vnl_io_matrix_h
4 //:
5 // \file
6 // \author Louise Butcher
7 // \date 20-Mar-2001
8 
9 #include <iosfwd>
10 #include <vsl/vsl_fwd.h>
11 #include <vnl/vnl_matrix.h>
12 #ifdef _MSC_VER
13 # include <vcl_msvc_warnings.h>
14 #endif
15 
16 //: Binary save vnl_matrix to stream.
17 // \relatesalso vnl_matrix
18 template <class T>
19 void vsl_b_write(vsl_b_ostream & os, const vnl_matrix<T> & v);
20 
21 //: Binary load vnl_matrix from stream.
22 // \relatesalso vnl_matrix
23 template <class T>
24 void vsl_b_read(vsl_b_istream & is, vnl_matrix<T> & v);
25 
26 //: Print human readable summary of object to a stream
27 // \relatesalso vnl_matrix
28 template <class T>
29 void vsl_print_summary(std::ostream & os,const vnl_matrix<T> & b);
30 
31 #endif // vnl_io_matrix_h
void vsl_print_summary(std::ostream &os, vnl_bignum const &b)
Print human readable summary of object to a stream.
An ordinary mathematical 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.
An ordinary mathematical matrix.
Definition: vnl_adjugate.h:22