Double Norm1
Calculates the matrix norm-1.
Returns: Double
Remarks:
Calculates calling matrix norm-1. The "norm-1" is defined as the largest column 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.Norm1;
}
finally
{
MtxVec.FreeIt(ref A);
}
See Also: TMtx.NormInf, TMtx.NormFro