主要运算代码 #23 TODO:文件读写错误,最后一个数据未导入。
freopen("FAccelerometer.csv","r",stdin);
getline(cin,temp);
while(cin>>ta[len1++]>>ax[len1]>>ay[len1]>>temp){}
len1-=2;
//Todo: Check out why the last number wasn't read.
// Now just modify len1 to let it looks right.
fclose(stdin);
绘制动态图像。
保存图像。
原始数据分析
数据格式转换
目前观察数据发现,加速度(线速度)传感器在x、y上均有极大的累计值。
Acceleration x (m/s^2) | Acceleration y (m/s^2) | |
---|---|---|
求和 | -667.79 | 290.8859 |
平均 | -0.10974 | 0.047804 |
猜测:g在x、y方向上有分加速度
静止状态下的加速度
测试直线运动的效果
大量修改代码
直线测试