Computes the 1-norm of the matrix.

Namespace: Meta.Numerics.Matrices
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public override double OneNorm()
Public Overrides Function OneNorm As Double
public:
virtual double OneNorm() override
abstract OneNorm : unit -> float 
override OneNorm : unit -> float 

Return Value

||M||1

Remarks

The 1-norm of a matrix is the largest column sum.

See Also