Table of Contents

Enum SqlFn.NormType

Namespace
LinqToDB.DataProvider.SqlServer
Assembly
linq2db.dll

A string with the name of the norm type to use to calculate the norm of the given vector.

public enum SqlFn.NormType
Extension Methods

Fields

Norm1 = 0

The 1-norm, which is the sum of the absolute values of the vector components.

Norm2 = 1

The 2-norm, also known as the Euclidean Norm, which is the square root of the sum of the squares of the vector components.

NormInf = 2

The infinity norm, which is the maximum of the absolute values of the vector components.