S
shapper
Hello,
I am translating a few functions from Matlab to C#.
This functions are applied to time series.
A simple example would be a moving average.
Should the time series be:
List<double> series
or
double[]
If i am not wrong a list allows to use Linq and array if better for
indexes.
For example, for a moving average calculation what would you use?
Thank You,
Miguel
I am translating a few functions from Matlab to C#.
This functions are applied to time series.
A simple example would be a moving average.
Should the time series be:
List<double> series
or
double[]
If i am not wrong a list allows to use Linq and array if better for
indexes.
For example, for a moving average calculation what would you use?
Thank You,
Miguel