Lulli
About
- Username
- Lulli
- Joined
- Visits
- 54
- Last Active
- Roles
- Member
Comments
-
I'm new to all this so thanks for helping and having patience with me. @eric I'm trying to interpret the formula. So i'm looking at the formula "a(n) = v(n) - v(n - 1) / deltaT" Your saying that i have to take V(n) current velocity and subtract …
-
@eric Wouldn't a(n) = (v(n) -v(n-1))/deltaT and a(n)*deltaT + v(n-1) be the same? The output was incorrect. I know its a summation, the data only goes pretty much in one direction. While shaking the sensor the change didn't occur like I thought it …
-
@eric the comment above was the one that i posted on StackOverflow
-
This double array holds the XYZ values of my accelerometer. This is linear-acceleration numbers, an algorithm has accounted and taken out the gravity factor. accelCompoDoub[0] = parseDouble(accelCompoString[0]); accelCompoDoub[1] = parseDouble(…
-
I now have the meta motion R with sensor fusion. I'm taking the linear acceleration, then computationally integrating it. I'm not getting the numbers that I should.
-
@jdjones "I'm guessing that you want velocity measurements in some fixed ('world') reference frame. One way to do this is to track the orientation of the device over time using angular velocity measurements from the gyroscope, then apply a change of…