#include "gnn_output.h"Include dependency graph for gnn_memory_output.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Functions | |
| gnn_output * | gnn_memory_output_new_from_matrix (gsl_matrix *m) |
| Builds an output set from a matrix. | |
| gnn_output * | gnn_memory_output_new (size_t size, size_t n) |
| Builds an output set for required sizes. | |
| const gsl_matrix * | gnn_memory_output_get_matrix (gnn_output *set) |
| Returns the set's internal matrix. | |
| int | gnn_memory_output_save (gnn_output *set, const char *filename) |
| Saves the outputs to a file. | |
|
|
This function returns a pointer to the set's internal matrix. This matrix stores the output vectors row-wise.
Definition at line 250 of file gnn_memory_output.c. |
|
||||||||||||
|
This function creates a new gnn_memory_output : Memory Output Samples. that should be able to store the given number of patterns, where the sample's size is also given.
Definition at line 163 of file gnn_memory_output.c. |
|
|
This function creates a new gnn_memory_output : Memory Output Samples. from a matrix, where the samples are stored row-wise. That is, each row will contain a different sample, and each column corresponds to a different sample's component.
Definition at line 203 of file gnn_memory_output.c. |
|
||||||||||||
|
This function saves the outputs stored in the matrix to a file, in plain ASCII format.
Definition at line 272 of file gnn_memory_output.c. |
1.2.18