GenSVM
gensvm_zv.h
Go to the documentation of this file.
1 
27 #include "gensvm_base.h"
28 
29 void gensvm_calculate_ZV(struct GenModel *model, struct GenData *data,
30  double *ZV);
31 void gensvm_calculate_ZV_sparse(struct GenModel *model,
32  struct GenData *data, double *ZV);
33 void gensvm_calculate_ZV_dense(struct GenModel *model,
34  struct GenData *data, double *ZV);
void gensvm_calculate_ZV_sparse(struct GenModel *model, struct GenData *data, double *ZV)
Compute the product Z*V for when Z is a sparse matrix.
Definition: gensvm_zv.c:70
A structure to represent the data.
Definition: gensvm_base.h:57
A structure to represent a single GenSVM model.
Definition: gensvm_base.h:92
void gensvm_calculate_ZV(struct GenModel *model, struct GenData *data, double *ZV)
Wrapper around sparse/dense versions of this function.
Definition: gensvm_zv.c:50
Header file for gensvm_base.c.
void gensvm_calculate_ZV_dense(struct GenModel *model, struct GenData *data, double *ZV)
Compute the product Z*V for when Z is a dense matrix.
Definition: gensvm_zv.c:108