Reputation: 31
I am implementing Kalman filter algorithm in Android. The code has some complex matrix multiplication operations. The matrix elements are of type float. My question is
1) how are floating point handled in Android??
2) Can GPU be used in complex matrix (elements of type float) calculations or any kind of numerical calculations?
Thank you very much
Upvotes: 2
Views: 1020
Reputation: 4102
android.opengl.Matrix library took care of this for you
renderscript seems to be a more user controllable solution.
Upvotes: 2