where the
, is the pattern returned by this device,
is the input sample drawn from the underlying input device, and
is the gaussian noise.
A gnn_gaussian_noise_input : Adds Gaussian Noise to Input Samples. should be built giving it a pointer to an already existing gnn_input : Reading and handling of sets of vectors. device. The gnn_gaussian_noise_input : Adds Gaussian Noise to Input Samples. owns a random number generator that is uses to generate the noise.
Typedefs | |
| typedef _gnn_gaussian_noise_input | gnn_gaussian_noise_input |
| The datatype for gaussian_noise inputs. | |
Functions | |
| const gsl_vector * | gnn_gaussian_noise_input_get (gnn_input *set, size_t k) |
| The "get" function for a gaussian_noise input set. | |
| void | gnn_gaussian_noise_input_destroy (gnn_input *set) |
| Destroy function. | |
| gnn_input * | gnn_gaussian_noise_new (gnn_input *input, double sigma) |
| Builds a gaussian noise device. | |
| int | gnn_gaussian_noise_set_sigma (gnn_input *input, double sigma) |
Sets a new
for the gaussian noise. | |
| double | gnn_gaussian_noise_get_sigma (gnn_input *input) |
Returns the current
. | |
|
|
This is the datatype for gaussian_noise inputs. It extends the basic gnn_input : Reading and handling of sets of vectors. structure to include the additional pointer to the gnn_input : Reading and handling of sets of vectors. device, a buffer for storing the current pattern that was built, etc. Definition at line 73 of file gnn_gaussian_noise_input.c. |
|
|
Definition at line 292 of file gnn_gaussian_noise_input.c. |
|
|
This is the gnn_gaussian_noise_input : Adds Gaussian Noise to Input Samples. destroy function.
Definition at line 156 of file gnn_gaussian_noise_input.c. |
|
||||||||||||
|
This function is returns the k-th pattern in the set.
Definition at line 107 of file gnn_gaussian_noise_input.c. |
|
||||||||||||
|
This function creates a new gnn_gaussian_noise_input : Adds Gaussian Noise to Input Samples. from a given gnn_input : Reading and handling of sets of vectors. device input. The noises' deviation
Definition at line 192 of file gnn_gaussian_noise_input.c. |
|
||||||||||||
|
Definition at line 263 of file gnn_gaussian_noise_input.c. |
1.2.18