I need to write an application which imputes some missing values on a time series signal. I have done something similar in R using ImputeTS
package but now I need to do it in Java.
I just searched the internet and found Apache Kalman filters as an existing implementation of Kalman filters in Java. But it seems they don't use an ARIMA inner model inside the filter. For example, there are transition and measurement matrices in Apache common, but how I can change them so that an ARIMA non seasonal model with (p,q,d) parameters can be used as an inner state model of the Kalman filter?
I am not expecting someone to write all codes but maybe someone can explain how to proceed with the above?