#include "MtxExpr.hpp"
#include "Sparse.hpp"
void __fastcall Example()
{
sVector x,b;
x.Size(b);
TSparseMtx* sparseM =
new TSparseMtx();
//..
sparseM.SolveIterative(b,x);
ShowMessage("Number of iterations : " + IntToStr(sparseM->ActualIters);
delete sparseM;
}