You are here: Symbol Reference > MtxExpr Namespace > Classes > Matrix Record > public > Matrix.Norm1 Method
MtxVec VCL
ContentsIndex
PreviousUpNext
Matrix.Norm1 Method

Calculates the matrix norm-1.

Pascal
function Norm1: double; overload;

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

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