You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Classes > Matrix Structure > Matrix Methods > Matrix.NormInf Method
Dew Math for .NET
ContentsIndexHome
PreviousUpNext
Matrix.NormInf Method

Calculates the matrix infinity norm.

Syntax
C#
Visual Basic
public double NormInf();

Calculate the calling matrix infinity norm. The "infinity norm" is defined as the largest row sum.

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