Vector<T>.Norm Internal Method
            
            Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Norm | Returns the norm of the specified order of this vector. | 
| Norm | Returns the norm of the specified order of this vector. | 
NormInternal(Int32)
            Returns the norm of the specified order of this
            vector.
            
protected virtual T NormInternal(
	int order
)Parameters
- order Int32
 - An integer specifying the order of the norm.
 
Return Value
TThe norm of order order of the Vector<T>.
Remarks
Inheritors must only provide implementations for orders different from 0 and 1.
NormInternal(T)
            Returns the norm of the specified order of this vector.
            
protected virtual T NormInternal(
	T order
)Parameters
- order T
 - A number value specifying the order of the norm.
 
Return Value
TThe norm of order order of the Vector<T>.
Remarks
Inheritors must only provide implementations for orders different from 0 and 1.