[问题]stackoverflow上 ble beacon 距离公式疑问

楼主: freedom74569   2016-01-20 13:52:31
http://stackoverflow.com/a/20434019
不知道有没有大大知道公式的一些数字怎么算出来的,原因是什么!
protected static double calculateAccuracy(int txPower, double rssi) {
// 这里就是无法准确取得rssi值,就回传-1.0回去
if (rssi == 0) {
return -1.0; // if we cannot determine accuracy, return -1.
}
// 以下我就不知道为什么了,所以想请教各位
double ratio = rssi*1.0/txPower;
if (ratio < 1.0) {
return Math.pow(ratio,10);
}
else {
// 想很详细的知道这些数字怎么算得的以及它的含意
double accuracy = (0.89976)*Math.pow(ratio,7.7095) + 0.111;
return accuracy;
}
}
作者: ian90911 (xopowo)   2016-01-20 14:51:00
我猜是一些环境参数之类的...
作者: LPH66 (-6.2598534e+18f)   2016-01-20 17:42:00
你的连线的 Note 有写了是做 best fit 出来的系数*连结后面补的 YMMV 是 Your Mileage May Vary“你的状况可能不同”的意思
楼主: freedom74569   2016-01-20 18:30:00
对的,这些我有读到,因为我设备不一样,所以想请教看有没有大概知道怎么算的,我也想去把他推算出来http://goo.gl/p7wl3f 有写这数据到base是Nexus 4

Links booklink

Contact Us: admin [ a t ] ucptt.com