什么时候是 K 1024,什么时候是 1000?

When is K 1024 and when is it 1000?

我有一个应用程序可以测量 TX/RX 设备的速率(以比特/秒为单位)。我想以每秒千位显示速率。正确的公式是什么?

  1. rx_in_k = rx / 1000
  2. rx_in_k = rx / 1024

谢谢,

我想这就是您要找的东西

The kilobit is a multiple of the unit bit for digital information or computer storage.

https://en.wikipedia.org/wiki/Kilobit

The kibibit is a multiple of the bit, a unit of digital information storage, using the standard binary prefix kibi, which has the symbol Ki, meaning 2^10

https://en.wikipedia.org/wiki/Kibibit

如果您真的很在意区分 2 的幂和 10 的幂,您应该阅读以下内容:https://en.wikipedia.org/wiki/Binary_prefix。在早期的计算机中,可以互换使用 2 的幂和 10 的公制幂(并且仍然被许多系统使用),但是随着时间的推移,我们开始使用越来越大的单位,两者之间的错误继续存在成长。您应该使用 kilo、mega、giga 等来表示 10 的幂,而使用 kibi、mebi、gibi 等来表示 2 的幂,以便明确无误。例如:

|------------|-----------|------------|
|    Bytes   | SI Units  |  IEC Units |
|------------|-----------|------------|
|      1000  | 1.0    KB | 0.976  KiB |
|      1024  | 1.024  KB | 1.0    KiB |
|    1000000 | 1.0    MB | 0.9537 MiB |
|    1048576 | 1.0486 MB | 1.0    MiB |
| 1000000000 | 1.0    GB | 0.9313 GiB |
| 1073741824 | 1.0737 GB | 1.0    GiB |
|------------|-----------|------------|

另请参阅:Converting bytes to megabytes