Changeset 1013 in Sophya for trunk/SophyaLib/TArray/tmatrix.h
- Timestamp:
- May 19, 2000, 9:01:50 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tmatrix.h
r1003 r1013 19 19 TMatrix(const TMatrix<T>& a, bool share); 20 20 TMatrix(const TArray<T>& a); 21 TMatrix(const TArray<T>& a, bool share, short mm=BaseArray:: CMemoryMapping);21 TMatrix(const TArray<T>& a, bool share, short mm=BaseArray::AutoMemoryMapping); 22 22 23 23 virtual ~TMatrix(); … … 92 92 //! -= : substract a matrix 93 93 inline TMatrix<T>& operator -= (const TMatrix<T>& a) { SubElt(a); return(*this); } 94 95 // Produit matriciel Multiply : C = (*this)*B96 94 TMatrix<T> Multiply(const TMatrix<T>& b, short mm=BaseArray::SameMemoryMapping) const; 95 //! *= : matrix product : C = (*this)*B 97 96 inline TMatrix<T>& operator *= (const TMatrix<T>& b) 98 97 { this->Set(Multiply(b)); return(*this); }
Note:
See TracChangeset
for help on using the changeset viewer.