From 3b470c8327bdafb133a11f5e7257ccb270f8c1c9 Mon Sep 17 00:00:00 2001
From: simon
Date: Tue, 4 Aug 2009 14:49:49 +0000
Subject: added stdevf functions , interfaces , header, tests , everything

---
 src/c/statisticsFunctions/stdevf/srowstdevfa.c | 2 --
 1 file changed, 2 deletions(-)

(limited to 'src/c/statisticsFunctions/stdevf/srowstdevfa.c')

diff --git a/src/c/statisticsFunctions/stdevf/srowstdevfa.c b/src/c/statisticsFunctions/stdevf/srowstdevfa.c
index 486111b6..337b80e3 100644
--- a/src/c/statisticsFunctions/stdevf/srowstdevfa.c
+++ b/src/c/statisticsFunctions/stdevf/srowstdevfa.c
@@ -14,7 +14,6 @@
 #include "stdevf.h"
 #include "meanf.h"
 
-#include <stdio.h>
 
 void srowstdevfa(float *in1, int lines, int columns, float *in2, float* out){
   int i = 0;
@@ -24,7 +23,6 @@ void srowstdevfa(float *in1, int lines, int columns, float *in2, float* out){
   float accumulateFre = 0.0f ;
     
   srowmeanfa(in1, lines, columns, in2, out );
-printf ("\nmfwerfwerfwefwef \n" );
 
   /*we first multiply each cell of the input matrix by its coefficient*/
   for (j = 0; j < columns; ++j)
-- 
cgit