diff options
| author | Gertjan van den Burg <burg@ese.eur.nl> | 2016-11-07 14:34:23 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <burg@ese.eur.nl> | 2016-11-07 14:34:23 +0100 |
| commit | 67acac80d920767585b5581a1d0a09572787a351 (patch) | |
| tree | 74e22f192def7fba4092643009e3a348097220d5 /include | |
| parent | prepare for gridsearch unit testing (diff) | |
| download | gensvm-67acac80d920767585b5581a1d0a09572787a351.tar.gz gensvm-67acac80d920767585b5581a1d0a09572787a351.zip | |
compute ZAZ in blocks to increase numerical precision
Diffstat (limited to 'include')
| -rw-r--r-- | include/gensvm_base.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/gensvm_base.h b/include/gensvm_base.h index e4c2be1..912c477 100644 --- a/include/gensvm_base.h +++ b/include/gensvm_base.h @@ -140,6 +140,8 @@ struct GenWork { ///< (K-1) x (m+1) working matrix for the Z'*B calculation double *ZAZ; ///< (m+1) x (m+1) working matrix for the Z'*A*Z calculation + double *tmpZAZ; + ///< (m+1) x (m+1) temporary working matrix for the Z'*A*Z calculation double *ZV; ///< n x (K-1) working matrix for the Z * V calculation double *beta; |
