Mercurial > hg > octave-lyh
comparison liboctave/fMatrix.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 | e087d7c77ff9 |
children | afcf852256d2 |
comparison
equal
deleted
inserted
replaced
9655:17971b0f18b1 | 9656:b29504415a2e |
---|---|
35 class | 35 class |
36 OCTAVE_API | 36 OCTAVE_API |
37 FloatMatrix : public MArray2<float> | 37 FloatMatrix : public MArray2<float> |
38 { | 38 { |
39 public: | 39 public: |
40 | |
41 typedef FloatColumnVector column_vector_type; | |
42 typedef FloatRowVector row_vector_type; | |
40 | 43 |
41 typedef void (*solve_singularity_handler) (float rcon); | 44 typedef void (*solve_singularity_handler) (float rcon); |
42 | 45 |
43 FloatMatrix (void) : MArray2<float> () { } | 46 FloatMatrix (void) : MArray2<float> () { } |
44 | 47 |