Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
I have a problem with implementing RKLT. I\'ve read through papers by P开发者_如何学Cengwei Hao and Qingyun Shi but i still have some questions. Has anybody seen an implementation of this transform?
I am using R software (R comm开发者_如何学编程ander) to cluster my data. I have a smaller subset of my data containing 200 rows and about 800 columns. I am getting the following error when trying kmea
MOVED: Moving this question to math.stackexchange.com and closing it. I\'m learning about the math invovled in PCA.For my purposes here, I\'m just trying to understand a 90° rotation matrix.I g
I\'m creating biplots of PCA data using the coeff and score outputs. I am looking to draw aline between the furthest points on the biplot. I\'m not sure how add a line to the plot without adding it my
I want to use the \"princomp\" function of Matlab but this function gives the eigenvalues in a sorted array. This way I can\'t find out to which column corresponds which eigenvalue.
I\'m having problems getting PCA and Eigenfaces working using the latest C++ syntax with the Mat and PCA classes. The older C syntax took an array of IplImage* as a parameter to perform its processing
My code: from numpy import * def pca(orig_data): data = array(orig_data) data = (data - data.mean(axis=0)) / data.std(axis=0)
May anyone give me a quick guide on how to use Cimg to compute SVD for a 3-dimension array? I just want to get the decomposition of the array in order to compress it small for speeding up further proc
I\'m implementing PCA using eigenvalue decomposition for sparse data. I know matlab has PCA implemented, but it helps me understand all the technicalities when I write code.