vnl_io_diag_matrix.h
Go to the documentation of this file.
1 // This is core/vnl/io/vnl_io_diag_matrix.h
2 #ifndef vnl_io_diag_matrix_h
3 #define vnl_io_diag_matrix_h
4 //:
5 // \file
6 // \author dac
7 // \date 21-Mar-2001
8 
9 #include <vsl/vsl_binary_io.h>
10 #include <vnl/vnl_diag_matrix.h>
11 
12 //: Binary save vnl_diag_matrix to stream.
13 // \relatesalso vnl_diag_matrix
14 template <class T>
15 void vsl_b_write(vsl_b_ostream &os, const vnl_diag_matrix<T> & v);
16 
17 //: Binary load vnl_diag_matrix from stream.
18 // \relatesalso vnl_diag_matrix
19 template <class T>
20 void vsl_b_read(vsl_b_istream &is, vnl_diag_matrix<T> & v);
21 
22 //: Print human readable summary of object to a stream
23 // \relatesalso vnl_diag_matrix
24 template <class T>
25 void vsl_print_summary(std::ostream& os,const vnl_diag_matrix<T> & b);
26 
27 #endif // vnl_io_diag_matrix_h
void vsl_print_summary(std::ostream &os, vnl_bignum const &b)
Print human readable summary of object to a stream.
#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.
stores a diagonal matrix as a single vector.
Contains class for diagonal matrices.