Resample data according to a timeArray - JAVA
I'd like to translate the following Matlab function
ts = resample(ts,Time) resamples the timeseries object ts using the new Time vector.
in java.
For the moment, I could not find any similar java libraries performing this feature of matlab.
My "ts" in java is for the moment similar to an开发者_JAVA技巧 arrayList of coordinates. A coordinate is that (ti,xi,yi,zi) And my Time in java is an ArrayList of Double.
Please help me, I am completely stuck!
Best regards,
Sofia
I just checked the source of the matlab function to understand what they are doing, because I know of two projects, bit still I'm not sure if they can provide you with exactly what you want. So you have to talk to them by your self.
The page WEKA and the javadoc look in ( filters.unsupervised.instance ) and another one is KNIME the have a transformer for row sampling, so maybe this is something for you.
bye
精彩评论