comparison src/ov-cx-mat.h @ 4687:e95c86d48732

[project @ 2004-01-06 21:53:34 by jwe]
author jwe
date Tue, 06 Jan 2004 21:53:34 +0000
parents c7ae43dfdea4
children 62f2fb593455
comparison
equal deleted inserted replaced
4686:c7ae43dfdea4 4687:e95c86d48732
106 106
107 void increment (void) { matrix += Complex (1.0); } 107 void increment (void) { matrix += Complex (1.0); }
108 108
109 void decrement (void) { matrix -= Complex (1.0); } 109 void decrement (void) { matrix -= Complex (1.0); }
110 110
111 bool save_ascii (std::ostream& os, bool& infnan_warned,
112 bool strip_nan_and_inf);
113
114 bool load_ascii (std::istream& is);
115
116 bool save_binary (std::ostream& os, bool& save_as_floats);
117
118 bool load_binary (std::istream& is, bool swap,
119 oct_mach_info::float_format fmt);
120
121 #if defined (HAVE_HDF5)
122 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats);
123
124 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug);
125 #endif
126
111 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; 127 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const;
112 128
113 private: 129 private:
114 130
115 DECLARE_OCTAVE_ALLOCATOR 131 DECLARE_OCTAVE_ALLOCATOR