Mercurial > hg > octave-lyh
comparison liboctave/CNDArray.h @ 9656:b29504415a2e
provide NDArray->Matrix->Vector typedef mappers
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Sat, 19 Sep 2009 11:14:28 +0200 |
parents | 1be3c73ed7b5 |
children | 192d94cff6c1 |
comparison
equal
deleted
inserted
replaced
9655:17971b0f18b1 | 9656:b29504415a2e |
---|---|
32 class | 32 class |
33 OCTAVE_API | 33 OCTAVE_API |
34 ComplexNDArray : public MArrayN<Complex> | 34 ComplexNDArray : public MArrayN<Complex> |
35 { | 35 { |
36 public: | 36 public: |
37 | |
38 typedef ComplexMatrix matrix_type; | |
37 | 39 |
38 ComplexNDArray (void) : MArrayN<Complex> () { } | 40 ComplexNDArray (void) : MArrayN<Complex> () { } |
39 | 41 |
40 ComplexNDArray (const dim_vector& dv) : MArrayN<Complex> (dv) { } | 42 ComplexNDArray (const dim_vector& dv) : MArrayN<Complex> (dv) { } |
41 | 43 |