#include <TmxArray.h>
Definition at line 30 of file TmxArray.h.
Public Member Functions | |
| TmxArray () | |
| TmxArray (const char *) | |
| TmxArray (void *) | |
| ~TmxArray () | |
| void | Set (TDSPVector *) |
| void | Set (TDSPMatrix *) |
| TmxArray & | operator= (TDSPVector &x) |
| TmxArray & | operator= (TDSPMatrix &x) |
| void * | Getmx () |
| void | Setmx (void *m) |
| TDSPMatrix * | Get (TDSPMatrix *s) |
| TDSPVector * | Get (TDSPVector *s=NULL) |
| Bool_t | IsString () |
| char * | GetString (char *buf=NULL, Int_t buflen=0) |
| TDSPVector * | GetRow (Int_t r, TDSPVector *row=NULL) |
| TDSPVector * | GetColumn (Int_t r, TDSPVector *row=NULL) |
| Int_t | GetN () |
| Int_t | GetM () |
| Int_t | GetCols () |
| Int_t | GetRows () |
| void | SetName (const char *) |
| const char * | GetName () |
| void | Print () |
| void | Clean () |
| Cleanup - remove the fmxarray if alloced by me. | |
| void | Detach () |
| Detach the mxArray - is necessary for use in return arguments of mex-files. | |
| TComplex | Element (Int_t index) |
| TComplex | operator() (Int_t index) |
Protected Attributes | |
| Bool_t | fMymx |
| void * | fmxArray |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Cleanup - remove the fmxarray if alloced by me.
|
|
|
Detach the mxArray - is necessary for use in return arguments of mex-files.
|
|
|
Referenced by operator()(). |
|
|
|
|
|
|
|
|
Definition at line 60 of file TmxArray.h. References GetN().
00060 { return GetN();};
|
|
||||||||||||
|
|
|
|
Referenced by GetRows(). |
|
|
Definition at line 50 of file TmxArray.h. References fmxArray.
00050 { return fmxArray;};
|
|
|
Referenced by GetCols(). |
|
|
|
|
||||||||||||
|
|
|
|
Definition at line 61 of file TmxArray.h. References GetM().
00061 { return GetM();};
|
|
||||||||||||
|
|
|
|
|
|
|
Definition at line 72 of file TmxArray.h. References Element().
00072 { return Element(index);};
|
|
|
Definition at line 48 of file TmxArray.h. References Set().
00048 {Set(&x);return *this;};
|
|
|
Definition at line 47 of file TmxArray.h. References Set().
00047 {Set(&x);return *this;};
|
|
|
|
|
|
|
|
|
Referenced by operator=(). |
|
|
|
|
|
|
|
|
Definition at line 35 of file TmxArray.h. Referenced by Getmx(). |
|
|
Definition at line 34 of file TmxArray.h. |
1.3.2