Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
WeightedSubtraction.cs
2{
6 public static partial class ArithmeticsOperations
7 {
15 public static void WeightedSubtraction(this Matrix<float> M, Matrix<float> Matrix, float Scalar)
16 {
17 M.WeightedAddition(Matrix, -Scalar);
18 }
19
27 public static void WeightedSubtraction(this Matrix<int> M, Matrix<int> Matrix, int Scalar)
28 {
29 M.WeightedAddition(Matrix, -Scalar);
30 }
31 }
32}
static void WeightedSubtraction(this Matrix< int > M, Matrix< int > Matrix, int Scalar)
Performs a weighted subtraction of a matrix to the current matrix, including a scalar multiplication ...
static void WeightedSubtraction(this Matrix< float > M, Matrix< float > Matrix, float Scalar)
Performs a weighted subtraction of a matrix to the current matrix, including a scalar multiplication ...
Implements a Matrix, basic component for computations in Image Processing and Computer Vision.
Definition: Matrix.cs:12