最佳答案
我尝试将 matlab 代码转换为 numpy,发现 numpy 与 std 函数的结果不同。
在 Matlab 里
std([1,3,4,6])
ans = 2.0817
麻木不仁
np.std([1,3,4,6])
1.8027756377319946
这正常吗,我该怎么处理?