Changeset 1017
- Timestamp:
- Feb 1, 2008, 5:53:04 PM (16 years ago)
- Location:
- trunk/yat/utility
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/matrix.cc
r1015 r1017 27 27 #include "matrix.h" 28 28 #include "vector.h" 29 #include "VectorBase.h" 29 30 #include "VectorView.h" 30 31 #include "utility.h" … … 567 568 568 569 569 vector operator*(const vector& v, const matrix& m)570 vector operator*(const VectorBase& v, const matrix& m) 570 571 { 571 572 utility::vector res(m.columns()); -
trunk/yat/utility/matrix.h
r1015 r1017 29 29 30 30 #include "vector.h" 31 #include "VectorBase.h"32 31 #include "VectorView.h" 33 32 #include "Exception.h" … … 41 40 namespace utility { 42 41 43 class vector;42 class VectorBase; 44 43 45 44 /// … … 505 504 \brief matrix vector multiplication 506 505 */ 507 vector operator*(const vector&, const matrix&);506 vector operator*(const VectorBase&, const matrix&); 508 507 509 508 }}} // of namespace utility, yat, and theplu
Note: See TracChangeset
for help on using the changeset viewer.