利用MATLAB讀取PHYSIONET資料庫的具體步驟
阿新 • • 發佈:2018-12-17
前提是安裝好了MATLAB,進行讀取PHYSIONET資料庫的具體步驟
1、開啟https://physionet.org/physiotools/matlab/wfdb-app-matlab/wfdb-app-toolbox-0-10-0.zip 下載安裝包wfdb-app-toolbox-0-10-0.zip 2、將安裝包拷貝到MATLAB安裝的目錄下,進行解壓縮 3、在MATLAB中設定新增路徑 3、在MATLAB中輸入以下程式程式碼就可以實現獲取physionet資料庫中的軟體了
cd D:\matlab\wfdb-app-toolbox-0-10-0 %安裝包解壓後的具體位置
就會得到下圖所示載入的各項,以上就完成了To install or update a previous installation of this Toolbox:
For a demonstration of the toolbox, run(直接複製,稍微等待結果,進行測試)
wfdbdemo
To read and plot an ECG signal from one of PhysioBank’s data collections, try these commands:(另一個讀取資料的方法)
[tm,sig]=rdsamp('mitdb/100',1);
plot(tm,sig);
If these tests do not run successfully, please see the Toolbox FAQ for troubleshooting hints.