Origin Version (Select Help-->About Origin): 7.5 Operating System:Win XP MCE 2005
Hello everybody,
I would like smoothing curve using S-G method; I tried this:
//Open a new worksheet win -t data Origin; //Import sample file open -w %YSamples\Data\Data with noise.dat; //Create a column for results wks.addcol(Result); //Assign datasets curve.data$ = DataWithNoise_Signal; curve.result$ = DataWithNoise_Result; curve.polyDeg=3; curve.smoothLeftPts=3; curve.smoothRightPts=3; curve.SGSmooth();