.NET Matrix Library
NormType Enumeration
See Also  Send Feedback



Specifies the norm value to be returned by the Norm member function.

Syntax

Visual Basic (Declaration) 
Public Enum NormType 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As NormType
C# 
public enum NormType : System.Enum 
C++/CLI 
public enum class NormType : public System.Enum 

Members

MemberDescription
FrobeniusNormFrobenius norm of the matrix or vector (square root of sum of squares).
InfinityNormInfinity norm of the matrix (maximum row sum).
MaxAbsValueThe element of largest absolute value of the matrix.
OneNorm1-norm of the matrix (maximum column sum).

Remarks

NormType enumeration is used to specify the norm to be returned by the Norm member function of the Matrix and CMatrix classes.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Vista, Windows Server 2008 family, Windows 7

See Also

.NET Matrix Library