ratal / mdfreader

Read Measurement Data Format (MDF) versions 3.x and 4.x file formats in python
Other
169 stars 74 forks source link

Sampling Frequency Information #31

Closed OnkarDeshpande closed 8 years ago

OnkarDeshpande commented 8 years ago

I was trying to go through the code and understand how exactly are you handling the channel data which are sampled at different frequencies. Are you up-sampling it or down-sampling it?

Thanks in advance.

ratal commented 8 years ago

Mdfreader reads the raw data and loads it in memory, there are no resampling done during file reading. You can up or down sample it by using method .resample() afterwards (in mdfreader.py, you can have a look)

ratal commented 8 years ago

I guess I answered your question.