qm-dsp  1.8
pca.h
Go to the documentation of this file.
00001 #ifndef _PCA_H
00002 #define _PCA_H
00003 
00004 #ifdef __cplusplus
00005 extern "C" {
00006 #endif
00007 
00008 /*
00009  *  pca.h
00010  *
00011  *  Created by Mark Levy on 08/02/2006.
00012  *  Copyright 2006 Centre for Digital Music, Queen Mary, University of London.
00013 
00014     This program is free software; you can redistribute it and/or
00015     modify it under the terms of the GNU General Public License as
00016     published by the Free Software Foundation; either version 2 of the
00017     License, or (at your option) any later version.  See the file
00018     COPYING included with this distribution for more information.
00019  *
00020  */
00021 
00022 void pca_project(double** data, int n, int m, int ncomponents);
00023 
00024 #ifdef __cplusplus
00025 }
00026 #endif
00027 
00028 
00029 #endif
00030