I am looking for a tool for time series analysis. What do I need is comparing two arrays with data and get some information how do they correlate. Examples:
arrayA = [1,2,3,4,5]
arrayB = [3,6,9,12,15]
I expect from program output like: arrayB = arrayA * 3
Another example:
arrayA = [1,2,3,4,5]
arrayB = [4,7,10,13,16]
I expect from program something like: arrayB = (arrayA * 3) + 1
Is there any application on the market that could help with that?