Mercurial > hg > octave-nkf
comparison liboctave/fCMatrix.h @ 9237:3c1762c7e787
Add missing xxx_API decoration and remove misplaced ones
author | Michael Goffioul <michael.goffioul@gmail.com> |
---|---|
date | Thu, 21 May 2009 21:28:47 +0100 |
parents | eb63fbe60fab |
children | e087d7c77ff9 |
comparison
equal
deleted
inserted
replaced
9236:c02224afead6 | 9237:3c1762c7e787 |
---|---|
130 FloatComplexMatrix hermitian (void) const | 130 FloatComplexMatrix hermitian (void) const |
131 { return MArray2<FloatComplex>::hermitian (std::conj); } | 131 { return MArray2<FloatComplex>::hermitian (std::conj); } |
132 FloatComplexMatrix transpose (void) const | 132 FloatComplexMatrix transpose (void) const |
133 { return MArray2<FloatComplex>::transpose (); } | 133 { return MArray2<FloatComplex>::transpose (); } |
134 | 134 |
135 friend FloatComplexMatrix conj (const FloatComplexMatrix& a); | 135 friend OCTAVE_API FloatComplexMatrix conj (const FloatComplexMatrix& a); |
136 | 136 |
137 // resize is the destructive equivalent for this one | 137 // resize is the destructive equivalent for this one |
138 | 138 |
139 FloatComplexMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; | 139 FloatComplexMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; |
140 | 140 |