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
We could add a simple bdf flag to the File constructor (e.g. File(io, bdf=true)) and make sure to handle BDF-specific quirks on read/write. We should probably define a simple Int24 primitive type internally for storage, and decode can handle it during conversion to floating point whenever any actual computation needs to be performed.
The text was updated successfully, but these errors were encountered:
I think BDF also limits some other things (e.g. requires constant sampling rate and includes a status channel), but it's the native format of Biosemi amplifiers, so we wind up supporting a huge class of research equipment. There's also GDF ..... There's a little bit on this over at bids-standard/pyedf#2 .
BDF/BDF+ is essentially "24 bit EDF/EDF+": https://www.teuniz.net/edfbrowser/bdfplus%20format%20description.html
We could add a simple
bdf
flag to theFile
constructor (e.g.File(io, bdf=true)
) and make sure to handle BDF-specific quirks on read/write. We should probably define a simpleInt24
primitive type internally for storage, anddecode
can handle it during conversion to floating point whenever any actual computation needs to be performed.The text was updated successfully, but these errors were encountered: