blob: 8917a3e71b8206401c6923569e8d77ebef452d37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file libGenSVM.c
* @author Gertjan van den Burg
* @date August 8, 2013
* @brief Main functions for the GenSVM algorithm
*
* @details
* The functions in this file are all functions needed
* to calculate the optimal separation boundaries for
* a multiclass classification problem, using the
* GenSVM algorithm.
*
*/
#include <cblas.h>
#include <math.h>
#include "globals.h"
#include "libGenSVM.h"
#include "gensvm.h"
#include "gensvm_matrix.h"
|