You are here: Symbol Reference > MtxExpr Namespace > Classes > Matrix Record > public > Toeplitz Method > Matrix.Toeplitz Method (TVec, TVec)
MtxVec VCL
ContentsIndex
Example
var V1,V2: Vector; T: Matrix; begin V1.SetIt(False,[1,2,3,4]); V2.SetIt(False,[2,3,4]); T.Toeplitz(V1,V2); // T becomes: //[1 2 3 4] //[2 1 2 3] //[3 2 1 2] //[4 3 2 1] end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.