Tensor.MultiplicationAssignment Operator
Definitie
Belangrijk
Bepaalde informatie heeft betrekking op een voorlopige productversie die aanzienlijk kan worden gewijzigd voordat deze wordt uitgebracht. Microsoft biedt geen enkele expliciete of impliciete garanties met betrekking tot de informatie die hier wordt verstrekt.
Overloads
| Name | Description |
|---|---|
| MultiplicationAssignment<TScalar>(Tensor<TScalar>, ReadOnlyTensorSpan<TScalar>) |
Voert in-place elementgewijze vermenigvuldiging tussen twee tensors uit. |
| MultiplicationAssignment<TScalar>(Tensor<TScalar>, TScalar) |
Voert in-place elementgewijze vermenigvuldiging uit tussen een tensor en scalaire waarde. |
| MultiplicationAssignment<TScalar>(TensorSpan<TScalar>, ReadOnlyTensorSpan<TScalar>) |
Voert in-place elementgewijze vermenigvuldiging tussen twee tensors uit. |
| MultiplicationAssignment<TScalar>(TensorSpan<TScalar>, TScalar) |
Voert in-place elementgewijze vermenigvuldiging uit tussen een tensor en scalaire waarde. |
MultiplicationAssignment<TScalar>(Tensor<TScalar>, ReadOnlyTensorSpan<TScalar>)
Voert in-place elementgewijze vermenigvuldiging tussen twee tensors uit.
public:
generic <typename TScalar>
where TScalar : System::Numerics::IMultiplyOperators<TScalar, TScalar, TScalar>, System::Numerics::IMultiplicativeIdentity<TScalar, TScalar> static void op_MultiplicationAssignment(System::Numerics::Tensors::Tensor<TScalar> ^ tensor, System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public static void op_MultiplicationAssignment<TScalar>(System.Numerics.Tensors.Tensor<TScalar> tensor, in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other) where TScalar : System.Numerics.IMultiplyOperators<TScalar,TScalar,TScalar>, System.Numerics.IMultiplicativeIdentity<TScalar,TScalar>;
static member op_MultiplicationAssignment : System.Numerics.Tensors.Tensor<'Scalar (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)> * ReadOnlyTensorSpan -> unit (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)
Public op_MultiplicationAssignment(Of TScalar As {IMultiplyOperators(Of TScalar, TScalar, TScalar), IMultiplicativeIdentity(Of TScalar, TScalar)}) (tensor As Tensor(Of TScalar), ByRef other As ReadOnlyTensorSpan(Of TScalar))
Type parameters
- TScalar
Het type elementen in de tensor.
Parameters
- tensor
- Tensor<TScalar>
- other
- ReadOnlyTensorSpan<TScalar>
De tensor die wordt gebruikt om de tensor te vermenigvuldigen waarop wordt bediend.
Van toepassing op
MultiplicationAssignment<TScalar>(Tensor<TScalar>, TScalar)
Voert in-place elementgewijze vermenigvuldiging uit tussen een tensor en scalaire waarde.
public:
generic <typename TScalar>
where TScalar : System::Numerics::IMultiplyOperators<TScalar, TScalar, TScalar>, System::Numerics::IMultiplicativeIdentity<TScalar, TScalar> static void op_MultiplicationAssignment(System::Numerics::Tensors::Tensor<TScalar> ^ tensor, TScalar other);
public static void op_MultiplicationAssignment<TScalar>(System.Numerics.Tensors.Tensor<TScalar> tensor, TScalar other) where TScalar : System.Numerics.IMultiplyOperators<TScalar,TScalar,TScalar>, System.Numerics.IMultiplicativeIdentity<TScalar,TScalar>;
static member op_MultiplicationAssignment : System.Numerics.Tensors.Tensor<'Scalar (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)> * 'Scalar -> unit (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)
Public op_MultiplicationAssignment(Of TScalar As {IMultiplyOperators(Of TScalar, TScalar, TScalar), IMultiplicativeIdentity(Of TScalar, TScalar)}) (tensor As Tensor(Of TScalar), other As TScalar)
Type parameters
- TScalar
Het type elementen in de tensor.
Parameters
- tensor
- Tensor<TScalar>
- other
- TScalar
De scalaire waarde die wordt gebruikt om de tensor waarop wordt bediend te vermenigvuldigen.
Van toepassing op
MultiplicationAssignment<TScalar>(TensorSpan<TScalar>, ReadOnlyTensorSpan<TScalar>)
Voert in-place elementgewijze vermenigvuldiging tussen twee tensors uit.
public:
generic <typename TScalar>
where TScalar : System::Numerics::IMultiplyOperators<TScalar, TScalar, TScalar>, System::Numerics::IMultiplicativeIdentity<TScalar, TScalar> static void op_MultiplicationAssignment(System::Numerics::Tensors::TensorSpan<TScalar> % tensor, System::Numerics::Tensors::ReadOnlyTensorSpan<TScalar> % other);
public static void op_MultiplicationAssignment<TScalar>(ref System.Numerics.Tensors.TensorSpan<TScalar> tensor, in System.Numerics.Tensors.ReadOnlyTensorSpan<TScalar> other) where TScalar : System.Numerics.IMultiplyOperators<TScalar,TScalar,TScalar>, System.Numerics.IMultiplicativeIdentity<TScalar,TScalar>;
static member op_MultiplicationAssignment : TensorSpan * ReadOnlyTensorSpan -> unit (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)
Public op_MultiplicationAssignment(Of TScalar As {IMultiplyOperators(Of TScalar, TScalar, TScalar), IMultiplicativeIdentity(Of TScalar, TScalar)}) (ByRef tensor As TensorSpan(Of TScalar), ByRef other As ReadOnlyTensorSpan(Of TScalar))
Type parameters
- TScalar
Het type elementen in de tensor.
Parameters
- tensor
- TensorSpan<TScalar>
De tensor om aan te werken.
- other
- ReadOnlyTensorSpan<TScalar>
De tensor die wordt gebruikt om de tensor te vermenigvuldigen waarop wordt bediend.
Van toepassing op
MultiplicationAssignment<TScalar>(TensorSpan<TScalar>, TScalar)
Voert in-place elementgewijze vermenigvuldiging uit tussen een tensor en scalaire waarde.
public:
generic <typename TScalar>
where TScalar : System::Numerics::IMultiplyOperators<TScalar, TScalar, TScalar>, System::Numerics::IMultiplicativeIdentity<TScalar, TScalar> static void op_MultiplicationAssignment(System::Numerics::Tensors::TensorSpan<TScalar> % tensor, TScalar other);
public static void op_MultiplicationAssignment<TScalar>(ref System.Numerics.Tensors.TensorSpan<TScalar> tensor, TScalar other) where TScalar : System.Numerics.IMultiplyOperators<TScalar,TScalar,TScalar>, System.Numerics.IMultiplicativeIdentity<TScalar,TScalar>;
static member op_MultiplicationAssignment : TensorSpan * 'Scalar -> unit (requires 'Scalar :> System.Numerics.IMultiplyOperators<'Scalar, 'Scalar, 'Scalar> and 'Scalar :> System.Numerics.IMultiplicativeIdentity<'Scalar, 'Scalar>)
Public op_MultiplicationAssignment(Of TScalar As {IMultiplyOperators(Of TScalar, TScalar, TScalar), IMultiplicativeIdentity(Of TScalar, TScalar)}) (ByRef tensor As TensorSpan(Of TScalar), other As TScalar)
Type parameters
- TScalar
Het type elementen in de tensor.
Parameters
- tensor
- TensorSpan<TScalar>
De tensor om aan te werken.
- other
- TScalar
De scalaire waarde die wordt gebruikt om de tensor waarop wordt bediend te vermenigvuldigen.