From 205395e92234946007cb94809abdaf136d0754f4 Mon Sep 17 00:00:00 2001 From: jofret Date: Thu, 19 Jun 2008 09:41:27 +0000 Subject: - Add mean column and row ways. - Add huge tests. --- src/statisticsFunctions/mean/Makefile.am | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/statisticsFunctions/mean/Makefile.am') diff --git a/src/statisticsFunctions/mean/Makefile.am b/src/statisticsFunctions/mean/Makefile.am index 7fac26c5..695ababa 100644 --- a/src/statisticsFunctions/mean/Makefile.am +++ b/src/statisticsFunctions/mean/Makefile.am @@ -20,9 +20,17 @@ pkglib_LTLIBRARIES = libMean.la libMean_la_SOURCES = $(HEAD) $(SRC) SRC = smeana.c \ + srowmeana.c \ + scolumnmeana.c \ dmeana.c \ + drowmeana.c \ + dcolumnmeana.c \ cmeana.c \ - zmeana.c + crowmeana.c \ + ccolumnmeana.c \ + zmeana.c \ + zrowmeana.c \ + zcolumnmeana.c HEAD = ../includes/mean.h @@ -36,6 +44,7 @@ check_INCLUDES = -I $(top_builddir)/statisticsFunctions/includes \ check_LDADD = $(top_builddir)/type/libDoubleComplex.la \ $(top_builddir)/type/libFloatComplex.la \ $(top_builddir)/statisticsFunctions/mean/libMean.la \ + $(top_builddir)/statisticsFunctions/sum/libSum.la \ @LIBMATH@ check_PROGRAMS = testFloatMean testDoubleMean -- cgit