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
nsamples is a valid keyword parameter in the header of filterbank files.
Currently, when reading filterbank files with this keyword, the following warning appears:
WARNING:root:Unknown header parameter: nsamples. Skipping it and continuing. This may lead to incorrect header values.
WARNING:root:Skipping next 4 bytes of data.
This also results in an incorrect number of samples being read from the file.
This can be fixed simply by adding the following to the SigprocFile class in your/formats/pysigproc.py:
_type["nsamples"] = "int"
The text was updated successfully, but these errors were encountered:
nsamples
is a valid keyword parameter in the header of filterbank files.Currently, when reading filterbank files with this keyword, the following warning appears:
This also results in an incorrect number of samples being read from the file.
This can be fixed simply by adding the following to the
SigprocFile
class inyour/formats/pysigproc.py
:The text was updated successfully, but these errors were encountered: