view maths/pca/pca.h @ 263:715b0a6bcdc0

* Ouch! We overrun the FFTRe/Im vectors with the very first dereference I assume the kernel matrix column values are supposed to index the FFT bins from the end, not from the end plus one
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 31 Jan 2008 13:01:48 +0000
parents cdfd0948a852
children 67899fda84f5
line wrap: on
line source
#ifndef _PCA_H
#define _PCA_H

#ifdef __cplusplus
extern "C" {
#endif

/*
 *  pca.h
 *  soundbite
 *
 *  Created by Mark Levy on 08/02/2006.
 *  Copyright 2006 Centre for Digital Music, Queen Mary, University of London. All rights reserved.
 *
 */

void pca_project(double** data, int n, int m, int ncomponents);

#ifdef __cplusplus
}
#endif


#endif