Mercurial > hg > qm-dsp
annotate maths/pca/pca.h @ 241:a98dd8ec96f8
* Move dsp/maths to maths ; bring PCA and HMM across from Soundbite
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 09 Jan 2008 10:31:29 +0000 |
parents | |
children |
rev | line source |
---|---|
c@241 | 1 #ifndef _PCA_H |
c@241 | 2 #define _PCA_H |
c@241 | 3 |
c@241 | 4 /* |
c@241 | 5 * pca.h |
c@241 | 6 * soundbite |
c@241 | 7 * |
c@241 | 8 * Created by Mark Levy on 08/02/2006. |
c@241 | 9 * Copyright 2006 Centre for Digital Music, Queen Mary, University of London. All rights reserved. |
c@241 | 10 * |
c@241 | 11 */ |
c@241 | 12 |
c@241 | 13 void pca_project(double** data, int n, int m, int ncomponents); |
c@241 | 14 |
c@241 | 15 |
c@241 | 16 #endif |