comparison liboctave/dMatrix.h @ 4309:a9560cebae6e

[project @ 2003-01-28 23:24:58 by jwe]
author jwe
date Tue, 28 Jan 2003 23:24:58 +0000
parents 5719210fff4c
children 236c10efcde2
comparison
equal deleted inserted replaced
4308:b738d1a02adb 4309:a9560cebae6e
244 244
245 extern Matrix Sylvester (const Matrix&, const Matrix&, const Matrix&); 245 extern Matrix Sylvester (const Matrix&, const Matrix&, const Matrix&);
246 246
247 extern Matrix operator * (const Matrix& a, const Matrix& b); 247 extern Matrix operator * (const Matrix& a, const Matrix& b);
248 248
249 extern Matrix min (double d, const Matrix& m);
250 extern Matrix min (const Matrix& m, double d);
251 extern Matrix min (const Matrix& a, const Matrix& b);
252
253 extern Matrix max (double d, const Matrix& m);
254 extern Matrix max (const Matrix& m, double d);
255 extern Matrix max (const Matrix& a, const Matrix& b);
256
249 MS_CMP_OP_DECLS (Matrix, double) 257 MS_CMP_OP_DECLS (Matrix, double)
250 MS_BOOL_OP_DECLS (Matrix, double) 258 MS_BOOL_OP_DECLS (Matrix, double)
251 259
252 SM_CMP_OP_DECLS (double, Matrix) 260 SM_CMP_OP_DECLS (double, Matrix)
253 SM_BOOL_OP_DECLS (double, Matrix) 261 SM_BOOL_OP_DECLS (double, Matrix)