comparison liboctave/CMatrix.h @ 5956:cdef72fcd206

[project @ 2006-08-22 20:36:56 by jwe]
author jwe
date Tue, 22 Aug 2006 20:36:57 +0000
parents 6b9cec830d72
children 85c7dc4afe6b
comparison
equal deleted inserted replaced
5955:fc46f9c99028 5956:cdef72fcd206
317 ComplexRowVector column_min (Array<octave_idx_type>& index) const; 317 ComplexRowVector column_min (Array<octave_idx_type>& index) const;
318 ComplexRowVector column_max (Array<octave_idx_type>& index) const; 318 ComplexRowVector column_max (Array<octave_idx_type>& index) const;
319 319
320 // i/o 320 // i/o
321 321
322 std::ostream& save_ascii (std::ostream& os, bool& infnan_warned,
323 int strip_nan_and_inf);
324
322 friend std::ostream& operator << (std::ostream& os, const ComplexMatrix& a); 325 friend std::ostream& operator << (std::ostream& os, const ComplexMatrix& a);
323 friend std::istream& operator >> (std::istream& is, ComplexMatrix& a); 326 friend std::istream& operator >> (std::istream& is, ComplexMatrix& a);
324 327
325 static Complex resize_fill_value (void) { return Complex (0.0, 0.0); } 328 static Complex resize_fill_value (void) { return Complex (0.0, 0.0); }
326 329