![]() |
Neuron Net
|
Describes the process of matrix normalization. More...
Macros | |
| #define | def_k_Normilize 15 |
| Index of the kernel for matrix normalization (Normalize) More... | |
| #define | def_k_norm_buffer 0 |
| In/Out Matrix. More... | |
| #define | def_k_norm_dimension 1 |
| Dimension of matrix. More... | |
| #define | def_k_NormilizeWeights 16 |
| Index of the kernel for weights matrix normalization (NormalizeWeights) More... | |
Functions | |
| __kernel void | Normalize (__global double *buffer, int dimension) |
| Describes the process of matrix normalization. More... | |
| __kernel void | NormalizeWeights (__global double *buffer, int dimension) |
| Describes the process of weights matrix normalization. More... | |
Describes the process of matrix normalization.
Detailed description on the link.
| #define def_k_norm_buffer 0 |
In/Out Matrix.
Definition at line 282 of file NeuroNet.mqh.
| #define def_k_norm_dimension 1 |
Dimension of matrix.
Definition at line 283 of file NeuroNet.mqh.
| #define def_k_Normilize 15 |
Index of the kernel for matrix normalization (Normalize)
Definition at line 281 of file NeuroNet.mqh.
| #define def_k_NormilizeWeights 16 |
Index of the kernel for weights matrix normalization (NormalizeWeights)
Definition at line 285 of file NeuroNet.mqh.
| __kernel void Normalize | ( | __global double * | buffer, |
| int | dimension | ||
| ) |
Describes the process of matrix normalization.
Detailed description on the link.
| [in,out] | buffer | In/Out Matrix |
| [in] | dimension | Dimension of matrix |
Definition at line 642 of file NeuroNet.cl.
| __kernel void NormalizeWeights | ( | __global double * | buffer, |
| int | dimension | ||
| ) |
Describes the process of weights matrix normalization.
Detailed description on the link.
| [in,out] | buffer | In/Out Matrix |
| [in] | dimension | Dimension of matrix |
Definition at line 665 of file NeuroNet.cl.