We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ad38785 + 9b9552a commit cda3281Copy full SHA for cda3281
neo/rawio/rawbinarysignalrawio.py
@@ -36,7 +36,7 @@ class RawBinarySignalRawIO(BaseRawIO):
36
Parameters
37
----------
38
filename: str, default: ''
39
- The *.raw or *.bin binary file to load
+ The *.raw, *.bin, or *.dat binary file to load
40
dtype: np.dtype, default: 'int16'
41
The dtype that the data is stored with. Must be acceptable by the numpy.dtype constructor
42
sampling_rate: float, default: 10000.0
@@ -51,7 +51,7 @@ class RawBinarySignalRawIO(BaseRawIO):
51
The offset for the bytes
52
"""
53
54
- extensions = ["raw", "bin"]
+ extensions = ["raw", "bin", "dat"]
55
rawmode = "one-file"
56
57
def __init__(
0 commit comments