--- Worksheet wks(strWks); int rown = GetRownVon(strWks); Dataset dsV(wks,0); Curve cvEcd(wks,5); // is Ecd Curve cvElm(wks,6); // is Elm int datsize = dsV.GetSize(); cvEcd.SetLowerBound(rown); cvElm.SetLowerBound(rown); cvEcd.SetUpperBound(datsize-2*rown); cvElm.SetUpperBound(datsize-2*rown); double maxCd = xatymax(cvEcd); double maxLm = xatymax(cvElm); --- This works fine, but is there a simple way to get a range of the curve, without using Set Lower and Upperbound? I'd like to plot the whole curve and do the math on only a part of the data.
Exactly what I was looking for! But, could it be that this way of use of the Curve object is only constructed in version 7.5? (because I get constructor errors after trying to build.) If so is there a version 7(SR4) work around?