ikarosilva / wfdb-app-toolbox

The WFDB Toolbox for MATLAB/Octave is a collection of functions for reading, writing, and processing physiologic signals in the formats used by PhysioNet (see README for details).
http://physionet.org/physiotools/matlab/wfdb-app-matlab/
GNU General Public License v3.0
92 stars 45 forks source link

New API is not documented on homepage #158

Open jcbsv opened 6 years ago

jcbsv commented 6 years ago

The project homepage does not reflect the change in the rdsamp API. For example, the front page contains an example with the following code:

[tm,sig]=rdsamp('mitdb/100',1);
plot(tm,sig);

With the new v0.10.0 API the code example should be

[sig, Fs, tm]=rdsamp('mitdb/100',1);
plot(tm,sig);

The toolbox FAQ page contains additional examples that need to be updated.