You are here: Symbol Reference > Toeplitz Namespace > Functions > Toeplitz.ToeplitzSolve Function
MtxVec VCL
ContentsIndex
PreviousUpNext
Toeplitz.ToeplitzSolve Function

Solves toeplitz system.

Pascal
procedure ToeplitzSolve(FirstRow: TVec; B: TVec; X: TVec); overload;
Parameters 
Description 
FirstRow 
Defines the first row R(0)..R(N-1) in the equation below. 
Defines B vector in equation below. 
Returns X vector in the equation below. 

Solves toeplitz system, defined as: 

 

[ R(0) R(1)* ... R(N-1)* ] [ X[1] ] = [ -B[1] ] [ R(1) R(0) ... R(N-2)* ] [ X[2] ] = [ -B[2] ] [ .... . . ] x [ . ] = [ . ] [ R(N-2) R(N-3) ... R(1)* ] [ X[N-1] ] = [ -B[N-1] ] [ R(N-1) R(N-2) ... R(0) ] [ X[N] ] = [ -B[N] ]
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!