Tensor Back End.Norm Method
Definition
Namespace: Numerics.NET.Tensors
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Assembly: Numerics.NET.Tensors (in Numerics.NET.Tensors.dll) Version: 9.0.1
Overload List
Norm<T>(Tensor<T>, Tensor<Boolean>, Boolean) | Computes the two-norm of the elements of a tensor. |
Norm<T>(Tensor<T>, Axes, Tensor<T>, Boolean, Tensor<Boolean>, Boolean, TensorElementOrder) | Computes the two-norm of the elements of a tensor. |
Norm<T>(Tensor<T>, Tensor<Boolean>, Boolean)
Computes the two-norm of the elements of a tensor.
public virtual T Norm<T>(
Tensor<T> value,
Tensor<bool>? mask = null,
bool skipMissingValues = false
)
Parameters
- value Tensor<T>
- A tensor.
- mask Tensor<Boolean> (Optional)
- Optional. A boolean that specifies for which elements the operation should be performed. If null (the default), the operation is applied everywhere.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the aggregation. The default is false.
Type Parameters
- T
- The type of the elements of the tensor.
Return Value
TA tensor containing the two-norm of the elements of value that satisfy mask along the specified axis.
Norm<T>(Tensor<T>, Axes, Tensor<T>, Boolean, Tensor<Boolean>, Boolean, TensorElementOrder)
Computes the two-norm of the elements of a tensor.
public virtual Tensor<T> Norm<T>(
Tensor<T> value,
Axes axis,
Tensor<T>? result = null,
bool keepDimensions = false,
Tensor<bool>? mask = null,
bool skipMissingValues = false,
TensorElementOrder order = TensorElementOrder.Automatic
)
Parameters
- value Tensor<T>
- A tensor.
- axis Axes
- The axis along which the two-norm of the elements is computed.
- result Tensor<T> (Optional)
- Optional. The tensor that is to hold the result. May be null.
- keepDimensions Boolean (Optional)
- Optional. Specifies whether the reduced axis should be retained in the result. The default is false.
- mask Tensor<Boolean> (Optional)
- Optional. A boolean tensor that specifies for which elements should be included in the operation. If null (the default), the operation is applied everywhere.
- skipMissingValues Boolean (Optional)
- Optional. Specifies whether missing values should be excluded from the operation. The default is false.
- order TensorElementOrder (Optional)
- Optional. If result is null, the desired ordering in memory of the result.
Type Parameters
- T
- The type of the elements of the tensor.
Return Value
Tensor<T>A tensor containing the two-norm of the elements of value that satisfy mask along the specified axis.
Exceptions
Argument | value is null. |