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