Double NormInf
Calculates the matrix infinity norm.
Returns: Double
Remarks:
Calculate the calling matrix infinity norm. The "infinity norm" is defined as the largest row sum.
Examples
TMtx A;
double b;
MtxVec.CreateIt(out A);
try
{
A.SetIt(2,2,false,[1,2,
2,4]); // 2x2, !complex matrix
b = A.NormInf; // b= 6
}
finally
{
MtxVec.FreeIt(ref A);
}
See Also: TMtx.NormFro, TMtx.Norm1