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