Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说了算。我想知道标准化是否对计算有任何影响。归一化会影响计算吗?
与 2 * 2 相比,计算 0.02 * 0.02 的成本更高,因为 2 * 2 是一个仅涉及一次乘法的数学运算。浮点数的存储格式为 2*10^-2(科学计数法)。因此,这里涉及到两个操作,
因此,答案计算为 4 * 10^(-4) 或 0.0004。因此,与 2*2 相比,0.02 * 0.02 的成本更高。