Then, I also have template function defined below as
Array2D<3,3> covMatrix(istream& stream);
and
Vect<3> meanVect(istream& stream);
I keep getting the error that the two functions are not declared in this scope. The line numbers refer to the function calls in the main function. I'm not sure what to do about this. Do you need to make a reference to a stream? How would I do this? Or is it something else?