Caution! Nerd Talk! :D
I'm trying to write a tool that does Principal Component Analysis (PCA) on a set of features. To simplify the problem I was thinking about working with a symetric matrix. So I got for example a 10x10 matrix where each row contains all the different feature values and each column represents an observation of those values in time. I'm able to compute the Covariance Matrix but now I'm struggling to find a smalltalk solution to compute the Eigenvalues and Eigenvectors of it. Any ideas?
I'm representing the matrix as arrays, one array each row BTW.
Thanks!