GenSVM
Public Attributes | List of all members
GenWork Struct Reference

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...
 

Detailed Description

A structure to hold the GenSVM workspace.

Definition at line 151 of file gensvm_base.h.

Member Data Documentation

◆ beta

double* GenWork::beta

K-1 working vector for a row of the B matrix.

Definition at line 171 of file gensvm_base.h.

◆ K

long GenWork::K

number of classes for the workspace

Definition at line 156 of file gensvm_base.h.

◆ LZ

double* GenWork::LZ

n x (m+1) working matrix for the Z'*A*Z calculation

Definition at line 159 of file gensvm_base.h.

◆ m

long GenWork::m

number of features for the workspace

Definition at line 154 of file gensvm_base.h.

◆ n

long GenWork::n

number of instances for the workspace

Definition at line 152 of file gensvm_base.h.

◆ tmpZAZ

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.

◆ ZAZ

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.

◆ ZB

double* GenWork::ZB

(m+1) x (K-1) working matrix for the Z'*B calculation

Definition at line 161 of file gensvm_base.h.

◆ ZBc

double* GenWork::ZBc

(K-1) x (m+1) working matrix for the Z'*B calculation

Definition at line 163 of file gensvm_base.h.

◆ ZV

double* GenWork::ZV

n x (K-1) working matrix for the Z * V calculation

Definition at line 169 of file gensvm_base.h.


The documentation for this struct was generated from the following file: