[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Assembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)
Führt eine Elementweise Multiplikation zwischen zwei Matrizen durch.
Namespace: DynamicNode.Tools.MathematicsAssembly: DataTypesAndTools (in DataTypesAndTools.dll) Version: 1.3.4679.19814 (1.3.0.0)
Syntax
C# |
---|
public static double[,] MultiplyPointwise( double[,] a, double[,] b ) |
Visual Basic |
---|
Public Shared Function MultiplyPointwise ( _ a As Double(,), _ b As Double(,) _ ) As Double(,) |
F# |
---|
static member MultiplyPointwise : a:float[,] * b:float[,] -> float[,] |
Parameters
- a
- Type: array<System..::..Double,2>[,](,)[,][,]
Die Matrix 1.
- b
- Type: array<System..::..Double,2>[,](,)[,][,]
Die Matrix 2.
Return Value
Die Ergebnismatrix.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentException | Wird geworfen, wenn die Dimensionen der Matrizen nicht kompatibel sind. |