comparison liboctave/CRowVector.h @ 13719:8547cde2a568

Export missing symbols. * CRowVector.h (operator*): Add OCTAVE_API decorator. * fCRowVector.h (operator*): Likewise.
author Michael Goffioul <michael.goffioul@gmail.com>
date Wed, 19 Oct 2011 12:00:31 +0100
parents a83bad07f7e3
children 72c96de7a403
comparison
equal deleted inserted replaced
13718:a31c926fb0d5 13719:8547cde2a568
123 123
124 }; 124 };
125 125
126 // row vector by column vector -> scalar 126 // row vector by column vector -> scalar
127 127
128 Complex operator * (const ComplexRowVector& a, const ColumnVector& b); 128 Complex OCTAVE_API operator * (const ComplexRowVector& a, const ColumnVector& b);
129 129
130 Complex operator * (const ComplexRowVector& a, const ComplexColumnVector& b); 130 Complex OCTAVE_API operator * (const ComplexRowVector& a, const ComplexColumnVector& b);
131 131
132 // other operations 132 // other operations
133 133
134 OCTAVE_API ComplexRowVector linspace (const Complex& x1, const Complex& x2, octave_idx_type n); 134 OCTAVE_API ComplexRowVector linspace (const Complex& x1, const Complex& x2, octave_idx_type n);
135 135