You are here: Symbol Reference > MtxVec Namespace > Classes > TMtx Class > published > TMtx.RefineSolution Property
MtxVec VCL
ContentsIndex
Example
var X,B: TVec; A: TMtx; begin CreateIt(X,B); CreateIt(A); try B.SetIt(False,[0,2]); A.SetIt(2,2,false,[1,2, 3,4]); // 2x2, not complex matrix A.RefineSolution := True; A.ConditionNumber := cnNormInf; A.LUSolve(B,X); finally FreeIt(B,X); FreeIt(A); end; end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.