Mercurial > hg > octave-nkf
comparison liboctave/CSparse.h @ 7802:1a446f28ce68
implement optimized sparse-dense transposed multiplication
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Sun, 18 May 2008 20:23:31 +0200 |
parents | 8c32f95c2639 |
children | 935be827eaf8 |
comparison
equal
deleted
inserted
replaced
7801:776791438957 | 7802:1a446f28ce68 |
---|---|
446 const SparseComplexMatrix&); | 446 const SparseComplexMatrix&); |
447 extern OCTAVE_API ComplexMatrix operator * (const ComplexMatrix&, | 447 extern OCTAVE_API ComplexMatrix operator * (const ComplexMatrix&, |
448 const SparseMatrix&); | 448 const SparseMatrix&); |
449 extern OCTAVE_API ComplexMatrix operator * (const ComplexMatrix&, | 449 extern OCTAVE_API ComplexMatrix operator * (const ComplexMatrix&, |
450 const SparseComplexMatrix&); | 450 const SparseComplexMatrix&); |
451 extern OCTAVE_API ComplexMatrix mul_trans (const ComplexMatrix&, | |
452 const SparseComplexMatrix&); | |
453 extern OCTAVE_API ComplexMatrix mul_herm (const ComplexMatrix&, | |
454 const SparseComplexMatrix&); | |
451 | 455 |
452 extern OCTAVE_API ComplexMatrix operator * (const SparseMatrix&, | 456 extern OCTAVE_API ComplexMatrix operator * (const SparseMatrix&, |
453 const ComplexMatrix&); | 457 const ComplexMatrix&); |
454 extern OCTAVE_API ComplexMatrix operator * (const SparseComplexMatrix&, | 458 extern OCTAVE_API ComplexMatrix operator * (const SparseComplexMatrix&, |
455 const Matrix&); | 459 const Matrix&); |
456 extern OCTAVE_API ComplexMatrix operator * (const SparseComplexMatrix&, | 460 extern OCTAVE_API ComplexMatrix operator * (const SparseComplexMatrix&, |
457 const ComplexMatrix&); | 461 const ComplexMatrix&); |
462 extern OCTAVE_API ComplexMatrix trans_mul (const SparseComplexMatrix&, | |
463 const ComplexMatrix&); | |
464 extern OCTAVE_API ComplexMatrix herm_mul (const SparseComplexMatrix&, | |
465 const ComplexMatrix&); | |
458 | 466 |
459 extern OCTAVE_API SparseComplexMatrix min (const Complex& c, | 467 extern OCTAVE_API SparseComplexMatrix min (const Complex& c, |
460 const SparseComplexMatrix& m); | 468 const SparseComplexMatrix& m); |
461 extern OCTAVE_API SparseComplexMatrix min (const SparseComplexMatrix& m, | 469 extern OCTAVE_API SparseComplexMatrix min (const SparseComplexMatrix& m, |
462 const Complex& c); | 470 const Complex& c); |