#ifndef FUNC_MEAN_H_ #define FUNC_MEAN_H_ #include /** * @short Mean function * Mean calculates the mean of the elements of an array * @see SD *
 * y <- mean(x[])
 * 
*/ class Mean : public ScalarFunc { public: Mean (); double eval (std::vector const &args) const; bool checkParameterDim (std::vector < SArray const *>const &args) const; }; #endif /* FUNC_MEAN_H_ */