Go to the source code of this file.
Functions | |
| TDSPMatrix * | Transform (TDSPMatrix *A, TDSPMatrix *X, TDSPMatrix *result=NULL) |
| Global Routines and matlab-equivalents. | |
| TDSPMatrix * | AdjointTransform (TDSPMatrix *A, TDSPMatrix *X, TDSPMatrix *result=NULL) |
| TDSPVector * | Affine (TDSPMatrix *A, TDSPVector *x, TDSPVector *b=NULL, TDSPVector *result=NULL) |
| TDSPMatrix * | UnitMatrix (Int_t nrows, Int_t ncols=0, TComplex diag=1.0) |
| TDSPMatrix * | FlatMatrix (Int_t nrows, Int_t ncols=0, TComplex fil=1.0) |
| TDSPMatrix * | ZeroMatrix (Int_t nrows, Int_t ncols=0) |
| TDSPMatrix * | Zeros (Int_t nrows, Int_t ncols=0) |
| TDSPMatrix * | Ones (Int_t nrows, Int_t ncols=0) |
| TComplex | Det (TDSPMatrix *a) |
| TDSPMatrix * | RowStack (TDSPVector *, Int_t n, TDSPMatrix *result=NULL) |
| TDSPMatrix * | ColumnStack (TDSPVector *, Int_t n, TDSPMatrix *result=NULL) |
| stack the vector as rows of a matrix | |
| TDSPMatrix * | ConvMatrix (TDSPVector *, Int_t m=0, Int_t n=0, TDSPMatrix *result=NULL, Bool_t cyclic=kTRUE, Int_t Offset=0) |
| stack the vector as columns of a matrix | |
| TDSPMatrix * | ConvMatrix (TDSPMatrix *, Int_t m=0, Int_t n=0, TDSPMatrix *result=NULL, Bool_t cyclic=kTRUE, Int_t mOffset=0, Int_t nOffset=0) |
| TDSPMatrix * | Toeplitz (TDSPVector *, Int_t m=0, Int_t n=0, TDSPMatrix *result=NULL, Bool_t cyclic=kTRUE) |
| TDSPMatrix * | RandNC (UInt_t M, UInt_t N, Double_t sigma=1.) |
|
||||||||||||||||
|
Definition at line 24 of file MatrixRoutines.h. References TDSPMatrix::AdjointTransform().
00024 { return A->AdjointTransform(X,result);};
|
|
||||||||||||||||||||
|
|
|
||||||||||||||||
|
stack the vector as rows of a matrix
|
|
||||||||||||||||||||||||||||||||
|
|
|
||||||||||||||||||||||||||||
|
stack the vector as columns of a matrix
|
|
|
Definition at line 31 of file MatrixRoutines.h. References TDSPMatrix::Det().
00031 { return a->Det();};
|
|
||||||||||||||||
|
Referenced by Ones(), and ZeroMatrix(). |
|
||||||||||||
|
Definition at line 30 of file MatrixRoutines.h. References FlatMatrix().
00030 {return FlatMatrix(nrows,ncols,1.0);}
|
|
||||||||||||||||
|
|
|
||||||||||||||||
|
|
|
||||||||||||||||||||||||
|
|
|
||||||||||||||||
|
Global Routines and matlab-equivalents. TDSP ******************************************************************* MatrixRoutines.h - description ------------------- begin : Mon Feb 18 2002 copyright : (C) 2002 by Peter Jung email : jung@hhi.de Definition at line 23 of file MatrixRoutines.h. References TDSPMatrix::Transform().
00023 { return A->Transform(X,result);};
|
|
||||||||||||||||
|
|
|
||||||||||||
|
Definition at line 28 of file MatrixRoutines.h. References FlatMatrix(). Referenced by Zeros().
00028 {return FlatMatrix(nrows,ncols,0.0);}
|
|
||||||||||||
|
Definition at line 29 of file MatrixRoutines.h. References ZeroMatrix().
00029 {return ZeroMatrix(nrows,ncols);};
|
1.3.2