blob: 3f4a1cb94649e151328b245675f247d7fadb69c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file gensvm_init.h
* @author Gertjan van den Burg
* @date May, 2016
* @brief Header file for gensvm_init.c
*
* @details
* Contains function declarations for the initialization functions for the
* model weights and model V matrix.
*/
#ifndef GENSVM_INIT_H
#define GENSVM_INIT_H
#include "gensvm_base.h"
void gensvm_init_V(struct GenModel *from_model, struct GenModel *to_model,
struct GenData *data);
void gensvm_initialize_weights(struct GenData *data, struct GenModel *model);
#endif
|