MATLAB: How to use sleep apnea (.dat ) dataset in matlab

databaseMATLABphysionetsleep apnea

https://physionet.org/content/apnea-ecg/1.0.0/ dataset in .dat file, it does not use dirctly in matlab so how to converted in matlab comparitable

Best Answer

fopen the file, and read all the data with format '*int16' and option 'ieee-le'
I am not completely sure that '*int16' is correct, with '*uint16' being a possibility.