forum.alglib.net

ALGLIB forum
It is currently Thu Mar 28, 2024 7:14 pm

All times are UTC


Forum rules


1. This forum can be used for discussion of both ALGLIB-related and general numerical analysis questions
2. This forum is English-only - postings in other languages will be removed.



Post new topic Reply to topic  [ 1 post ] 
Author Message
 Post subject: Matrix after PCA is not orthogonal
PostPosted: Tue Feb 12, 2019 5:21 am 
Offline

Joined: Tue Feb 12, 2019 4:25 am
Posts: 1
Hi everyone,

I want to apply PCA on my matrix. What I did is to call pcabuildbasis() function, get the eigVectors and then multiply my matrix with the eigVectors matrix. However when I check the correlation coefficient among columns after PCA, I find the last several columns are still correlated. Here is my code. Did I call pcabuildbasis() incorrectly? Or there is a bug in the PCA function itself?

Code:
int NumOfSamplePath=1000;
int nofcoeffs=417;
int i=1;

alglib::real_2d_array ptInput;
ptInput.setcontent(NumOfSamplePath, nofcoeffs - 12 * (i - 1), beta_var_value[i]);
alglib::ae_int_t info;
alglib::real_1d_array eigValues;
alglib::real_2d_array eigVectors;
alglib::pcabuildbasis(ptInput, NumOfSamplePath, nofcoeffs - 12 * (i - 1), info, eigValues, eigVectors);


Thanks.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 1 post ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 53 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group