Mercurial > hg > octave-nkf
diff liboctave/dMatrix.h @ 3504:5eef8a2294bd
[project @ 2000-02-01 10:06:51 by jwe]
author | jwe |
---|---|
date | Tue, 01 Feb 2000 10:07:26 +0000 |
parents | 45742a3b1f7c |
children | 6ae6f1180e62 |
line wrap: on
line diff
--- a/liboctave/dMatrix.h +++ b/liboctave/dMatrix.h @@ -38,17 +38,6 @@ class Matrix : public MArray2<double> { -friend class ComplexMatrix; -friend class AEPBAL; -friend class CHOL; -friend class GEPBAL; -friend class HESS; -friend class LU; -friend class QR; -friend class QRP; -friend class SCHUR; -friend class SVD; - public: typedef void (*solve_singularity_handler) (double rcond); @@ -230,13 +219,13 @@ // i/o - friend ostream& operator << (ostream& os, const Matrix& a); - friend istream& operator >> (istream& is, Matrix& a); + friend std::ostream& operator << (std::ostream& os, const Matrix& a); + friend std::istream& operator >> (std::istream& is, Matrix& a); - int read (istream& is, int nr, int nc, oct_data_conv::data_type dt, + int read (std::istream& is, int nr, int nc, oct_data_conv::data_type dt, int skip, oct_mach_info::float_format flt_fmt); - int write (ostream& os, oct_data_conv::data_type dt, int skip, + int write (std::ostream& os, oct_data_conv::data_type dt, int skip, oct_mach_info::float_format flt_fmt); private: