/*--- DoubleVectorOps.cpp --- Implementation file for a library with some common operations for vector: average(): average of values stored in a vector standardDev(): standard deviation of values stored in a vector median(): median of values stored in a vector *** Add your information here ------------------------------------------------------------------------*/ #include "DoubleVectorOps.h" // replace this line with a definition of average() // replace this line with a definition of standardDev() // replace this line with a definition of median()