加速度计数据表详细信息说明
我正在研究三星 Galaxy 加速计 SMB380。 这是数据表:http://www.bosch-sensortec .com/content/language1/downloads/SMB380_Flyer_Rev1.3.pdf
有人可以向我解释一下右侧的技术数据吗? 我对噪声和精度数据特别感兴趣。 谢谢
i'm working on samsung galaxy accelerometer SMB380.
This is the data sheet: http://www.bosch-sensortec.com/content/language1/downloads/SMB380_Flyer_Rev1.3.pdf
Can someone explain me technical data on the right?
I'm especially interested in the noise and precision data.
Thx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
噪声为 0.5 mg/Hz^-1,它告诉您在给定的测量带宽下会有多少噪声,例如,如果您使用 100 Hz 低通滤波器过滤信号,则预计会有 5 mg 的噪声。
至于灵敏度,有 3 个可编程范围。最灵敏的范围是 2 g。输出为 10 位(可能是有符号的),因此每位您可以得到 4 mg,即您可以在 +/- 1 位级别检测到的最小信号为 4 mg。
Noise is 0.5 mg/Hz^-1, which tells you how much noise there will be for a given measurement bandwidth, e.g. if you filter your signal with a 100 Hz low pass filter you can expect 5 mg of noise.
As for sensitivity, there are 3 programmable ranges. The most sensitive range is 2 g. The output is 10 bits (signed, presumably) so you get 4 mg per bit, i.e. the smallest signal you can detect at a level of +/- 1 bit is 4 mg.
你可以在matlab中使用巴特沃斯滤波器,结果将是完美的,特别是如果你使用这个参数 [B,A]=butter(2, 0.05)
you can use the butterworth filter in matlab, the result will be perfect especially if you use this parametrer [B,A]=butter(2, 0.05)