GenSVM
|
A structure to hold the GenSVM workspace. More...
#include <gensvm_base.h>
Public Attributes | |
long | n |
number of instances for the workspace More... | |
long | m |
number of features for the workspace More... | |
long | K |
number of classes for the workspace More... | |
double * | LZ |
n x (m+1) working matrix for the Z'*A*Z calculation More... | |
double * | ZB |
(m+1) x (K-1) working matrix for the Z'*B calculation More... | |
double * | ZBc |
(K-1) x (m+1) working matrix for the Z'*B calculation More... | |
double * | ZAZ |
(m+1) x (m+1) working matrix for the Z'*A*Z calculation More... | |
double * | tmpZAZ |
(m+1) x (m+1) temporary working matrix for the Z'*A*Z calculation More... | |
double * | ZV |
n x (K-1) working matrix for the Z * V calculation More... | |
double * | beta |
K-1 working vector for a row of the B matrix. More... | |
A structure to hold the GenSVM workspace.
Definition at line 151 of file gensvm_base.h.
double* GenWork::beta |
K-1 working vector for a row of the B matrix.
Definition at line 171 of file gensvm_base.h.
long GenWork::K |
number of classes for the workspace
Definition at line 156 of file gensvm_base.h.
double* GenWork::LZ |
n x (m+1) working matrix for the Z'*A*Z calculation
Definition at line 159 of file gensvm_base.h.
long GenWork::m |
number of features for the workspace
Definition at line 154 of file gensvm_base.h.
long GenWork::n |
number of instances for the workspace
Definition at line 152 of file gensvm_base.h.
double* GenWork::tmpZAZ |
(m+1) x (m+1) temporary working matrix for the Z'*A*Z calculation
Definition at line 167 of file gensvm_base.h.
double* GenWork::ZAZ |
(m+1) x (m+1) working matrix for the Z'*A*Z calculation
Definition at line 165 of file gensvm_base.h.
double* GenWork::ZB |
(m+1) x (K-1) working matrix for the Z'*B calculation
Definition at line 161 of file gensvm_base.h.
double* GenWork::ZBc |
(K-1) x (m+1) working matrix for the Z'*B calculation
Definition at line 163 of file gensvm_base.h.
double* GenWork::ZV |
n x (K-1) working matrix for the Z * V calculation
Definition at line 169 of file gensvm_base.h.