#ifndef FUNC_SD_H_ #define FUNC_SD_H_ #include /** * @short Standard deviation function * SD calculates the standard deviation of the elements of an array. * The array must have at least 2 elements. * @see mean *
 * y <- sd(x[])
 * 
*/ class SD : public ScalarFunc { public: SD (); double eval (std::vector const &args) const; bool checkParameterDim (std::vector const &args) const; }; #endif /* FUNC_SD_H_ */