diff pca.c @ 557:9f3f45596ecf libavutil

Move context struct to c file.
author michael
date Sun, 17 Aug 2008 15:51:20 +0000
parents 2fb78abcf725
children daccf2fe1053
line wrap: on
line diff
--- a/pca.c	Sun Aug 17 15:50:20 2008 +0000
+++ b/pca.c	Sun Aug 17 15:51:20 2008 +0000
@@ -26,6 +26,13 @@
 #include "common.h"
 #include "pca.h"
 
+typedef struct PCA{
+    int count;
+    int n;
+    double *covariance;
+    double *mean;
+}PCA;
+
 PCA *ff_pca_init(int n){
     PCA *pca;
     if(n<=0)