You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tests/synthetic/test_fourier_coefficients.py FCs are added to an mth5 file, the file is written, and later those fcs are to be accessed.
This test passed when there was a boxcar window, but is not running as intended with a hamming window.
Fixes needed:
The file written should have "hamming" and not "boxcar"
The freshly minted mth5
ls -l
-rw-rw-r-- 1 kkappler kkappler 537852 Nov 18 17:05 test2.h5
Around line 376 of process_mth5.py is called
In tests/synthetic/test_fourier_coefficients.py FCs are added to an mth5 file, the file is written, and later those fcs are to be accessed.
This test passed when there was a boxcar window, but is not running as intended with a hamming window.
Fixes needed:
The freshly minted mth5
ls -l
-rw-rw-r-- 1 kkappler kkappler 537852 Nov 18 17:05 test2.h5
Around line 376 of process_mth5.py is called
Within save_fourier_coefficients, the critical lines are:
After this exectutes, the metadata looks correct:
The window .type is "hamming"
However, if I call
tmp = fc_group.get_decimation_level("0")
The window is boxcar:
The FCs are being w
The text was updated successfully, but these errors were encountered: