Hello!
I want to do some simple, reproducible performance test to compare DIAdem, with other measurement data analyzer software.
In this test the software do some channel operations (eg. Calculate average). After the first run of the script, this calculation was much slower, than the next one. Probably some data stayed in the memory, but i really want to know why.
I use this script:
CallData.Root.Clear()
CallLogfileDel()
Dim Start
Start=Timer
CallDataFileLoad(".")
Dim Load
Load=Timer-Start
CallMsgboxDisp(Load)
Dim start2
Start2=Timer
CallChnAverage("'[1]/[1]'-'[1]/[20]'","[1]/Average")
Dim Finish
Finish=Timer - start2
CallMsgboxDisp(Finish)
Thanks for the answer.
Gergo