newmatio.h
Go to the documentation of this file.00001
00002
00003
00004
00005 #ifndef NEWMATIO_LIB
00006 #define NEWMATIO_LIB 0
00007
00008 #ifndef WANT_STREAM
00009 #define WANT_STREAM
00010 #endif
00011
00012 #include "newmat.h"
00013
00014 #ifdef use_namespace
00015 namespace NEWMAT {
00016 #endif
00017
00018
00019
00020
00021
00022 std::ostream& operator<<(std::ostream&, const BaseMatrix&);
00023
00024 std::ostream& operator<<(std::ostream&, const GeneralMatrix&);
00025
00026
00027
00028 class printmat {
00029 public:
00030 const Matrix &mat;
00031 printmat(const Matrix &m) : mat(m) {}
00032 };
00033
00034 std::ostream& operator<<(std::ostream&, const printmat&);
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063 #ifdef use_namespace
00064 }
00065 #endif
00066
00067
00068
00069 #endif
00070
00071
00072