Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtx *Toeplitz(TVec *FirstRow, TVec *FirstCol); | Constructs a Toeplitz matrix. |
| 2 | TMtx *Toeplitz(TVec *FirstRow); | Constructs a Toeplitz matrix. |
Overload 1: TMtx *Toeplitz(TVec *FirstRow, TVec *FirstCol);
Constructs a Toeplitz matrix.
Remarks:
Constructs a Toeplitz matrix with first row equal to FirstRow vector and first column equal to FirstCol vector, but without the first element. The TMtx::Rows, TMtx::Cols and TMtx::Complex properties of the calling matrix are adjusted automatically. An exception is raised if FirstRow and FirstCol Complex properties do not match.
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler
Overload 2: TMtx *Toeplitz(TVec *FirstRow);
Constructs a Toeplitz matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | FirstRow | TVec * |
Remarks:
Constructs a Toeplitz matrix with first row equal to FirstRow vector and first column equal to FirstRow vector, but without the first element.
Declared in Dew::Math::TMtx · Dew.Math/MtxVec.h · Cross-compiler