ASE Home Page Products Download Purchase Support About ASE
ChartDirector General
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  LOWESS Curve getting values
Posted by Jamie Pocock on Apr-17-2010 05:38
Hello
I was hoping for some help with a problem I am having.
I am using the LOWESS curve on data taken from 50 events.
What I would like to know is how I can get the value of the 50th event as a string in VB6

Been looking at this on and off for somtime but I have come to a point in the project where I need this value and seem to be wasting hours trying to get this value.

Thank you.

  Re: LOWESS Curve getting values
Posted by Jamie Pocock on Apr-17-2010 05:54
Found this
myLowessData = cd.ArrayMath(myData).lowess().result()

So I will try it with somthing like

myLowessData = cd.ArrayMath(myData).lowess().result()

Result = ubound(myLowessData)

LastEvent = myLowessData(Result)

should work, off to test it