[問題]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