I am working on accelerometer from an android phone. I wish to filter the horrible noise the accelerometer is returning recording the phone's moves.
I was reading around on Kalman filter, because low pass are just not enough.
But I don't have a model of the transition from ACCELERATION(k-1)
to ACCELERATION(k)
because it is the movements of the user. So I have no state transition matrix (H or F in different papers, the one that multiply Xk-1 in the equation Xk = HXk-1 + Bcommand+noise)
I saw some people taking the identity matrix in simple examples. How can it work for dynamic acceleration?
I know Kalman Filters, people always produce some H matrix, I just don't know how in my case.