I have a vector of doubles and I need to get the maximum value within it and then store the value inside an integer variable so that I can compare the value. I have this so far:
vector<double>::iterator result;
result = max_element(zerocrossdata.begin(), zerocrossdata.end());
Anyone know how I can place the value inside a variable? Confused!!