c@244: #ifndef _PCA_H c@244: #define _PCA_H c@244: c@245: #ifdef __cplusplus c@245: extern "C" { c@245: #endif c@245: c@244: /* c@244: * pca.h c@244: * soundbite c@244: * c@244: * Created by Mark Levy on 08/02/2006. c@244: * Copyright 2006 Centre for Digital Music, Queen Mary, University of London. All rights reserved. c@244: * c@244: */ c@244: c@244: void pca_project(double** data, int n, int m, int ncomponents); c@244: c@245: #ifdef __cplusplus c@245: } c@245: #endif c@245: c@244: c@244: #endif c@244: