Mercurial > hg > octave-nkf
comparison liboctave/fMatrix.h @ 9665:1dba57e9d08d
use blas_trans_type for xgemm
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Sat, 26 Sep 2009 10:41:07 +0200 |
parents | afcf852256d2 |
children | f80c566bc751 |
comparison
equal
deleted
inserted
replaced
9664:2c5169034035 | 9665:1dba57e9d08d |
---|---|
352 | 352 |
353 extern OCTAVE_API FloatMatrix Givens (float, float); | 353 extern OCTAVE_API FloatMatrix Givens (float, float); |
354 | 354 |
355 extern OCTAVE_API FloatMatrix Sylvester (const FloatMatrix&, const FloatMatrix&, const FloatMatrix&); | 355 extern OCTAVE_API FloatMatrix Sylvester (const FloatMatrix&, const FloatMatrix&, const FloatMatrix&); |
356 | 356 |
357 extern OCTAVE_API FloatMatrix xgemm (bool transa, const FloatMatrix& a, bool transb, const FloatMatrix& b); | 357 extern OCTAVE_API FloatMatrix xgemm (const FloatMatrix& a, const FloatMatrix& b, |
358 blas_trans_type transa = blas_no_trans, | |
359 blas_trans_type transb = blas_no_trans); | |
358 | 360 |
359 extern OCTAVE_API FloatMatrix operator * (const FloatMatrix& a, const FloatMatrix& b); | 361 extern OCTAVE_API FloatMatrix operator * (const FloatMatrix& a, const FloatMatrix& b); |
360 | 362 |
361 extern OCTAVE_API FloatMatrix min (float d, const FloatMatrix& m); | 363 extern OCTAVE_API FloatMatrix min (float d, const FloatMatrix& m); |
362 extern OCTAVE_API FloatMatrix min (const FloatMatrix& m, float d); | 364 extern OCTAVE_API FloatMatrix min (const FloatMatrix& m, float d); |