comparison liboctave/CRowVector.h @ 6108:143b556ce725

[project @ 2006-10-27 01:45:54 by jwe]
author jwe
date Fri, 27 Oct 2006 01:45:56 +0000
parents 4c8a2e4e0717
children 93c65f2a5668
comparison
equal deleted inserted replaced
6107:6465ca8e4f0c 6108:143b556ce725
27 #include "MArray.h" 27 #include "MArray.h"
28 28
29 #include "mx-defs.h" 29 #include "mx-defs.h"
30 30
31 class 31 class
32 OCTAVE_API
32 ComplexRowVector : public MArray<Complex> 33 ComplexRowVector : public MArray<Complex>
33 { 34 {
34 friend class ComplexColumnVector; 35 friend class ComplexColumnVector;
35 36
36 public: 37 public:
119 120
120 Complex operator * (const ComplexRowVector& a, const ComplexColumnVector& b); 121 Complex operator * (const ComplexRowVector& a, const ComplexColumnVector& b);
121 122
122 // other operations 123 // other operations
123 124
124 ComplexRowVector linspace (const Complex& x1, const Complex& x2, octave_idx_type n); 125 OCTAVE_API ComplexRowVector linspace (const Complex& x1, const Complex& x2, octave_idx_type n);
125 126
126 MARRAY_FORWARD_DEFS (MArray, ComplexRowVector, Complex) 127 MARRAY_FORWARD_DEFS (MArray, ComplexRowVector, Complex)
127 128
128 #endif 129 #endif
129 130