You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > TMtx Class > TMtx Methods > TMtx.Norm1 Method
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
TMtx.Norm1 Method

Calculates the matrix norm-1.

Syntax
C#
Visual Basic
public double Norm1();

Calculates calling matrix norm-1. The "norm-1" is defined as the largest column sum.

var A: TMtx; b: double; begin CreateIt(A); try A.SetIt(2,2,false,[1,2, 2,4]); // 2x2, not complex matrix b := A.Norm1; finally FreeIt(A); end; end;
Copyright (c) 1999-2022 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!