我嘗試一些numpy.array
計算的結果與預期結果進行比較,我不斷得到錯誤的比較,但印刷陣列看起來是一樣的,如:爲什麼這個numpy數組比較失敗?
def test_gen_sine():
A, f, phi, fs, t = 1.0, 10.0, 1.0, 50.0, 0.1
expected = array([0.54030231, -0.63332387, -0.93171798, 0.05749049, 0.96724906])
result = gen_sine(A, f, phi, fs, t)
npt.assert_array_equal(expected, result)
打印回:
> raise AssertionError(msg)
E AssertionError:
E Arrays are not equal
E
E (mismatch 100.0%)
E x: array([ 0.540302, -0.633324, -0.931718, 0.05749 , 0.967249])
E y: array([ 0.540302, -0.633324, -0.931718, 0.05749 , 0.967249])
我的gen_sine功能是:
def gen_sine(A, f, phi, fs, t):
sampling_period = 1/fs
num_samples = fs * t
samples_range = (np.arange(0, num_samples) * 2 * f * np.pi * sampling_period) + phi
return A * np.cos(samples_range)
這是爲什麼?我應該如何比較兩個陣列? (我使用numpy 1.9.3和pytest 2.8.1)
用於比較浮動的基本'numpy'函數是'np.allclose'。 – hpaulj