comparison liboctave/dMatrix.h @ 1365:9b2654476502

[project @ 1995-09-05 23:44:41 by jwe]
author jwe
date Tue, 05 Sep 1995 23:50:05 +0000
parents a6994c934a50
children f75432dff006
comparison
equal deleted inserted replaced
1364:353b06ad0194 1365:9b2654476502
228 // i/o 228 // i/o
229 229
230 friend ostream& operator << (ostream& os, const Matrix& a); 230 friend ostream& operator << (ostream& os, const Matrix& a);
231 friend istream& operator >> (istream& is, Matrix& a); 231 friend istream& operator >> (istream& is, Matrix& a);
232 232
233 int read (FILE *fptr, char *type); 233 int read (FILE *fptr, const char *type);
234 int write (FILE *fptr, char *type); 234 int write (FILE *fptr, const char *type);
235 235
236 private: 236 private:
237 237
238 Matrix (double *d, int r, int c) : MArray2<double> (d, r, c) { } 238 Matrix (double *d, int r, int c) : MArray2<double> (d, r, c) { }
239 }; 239 };