利用MATLAB读取PHYSIONET数据库的具体步骤

前提是安装好了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中设置添加路径
利用MATLAB读取PHYSIONET数据库的具体步骤
利用MATLAB读取PHYSIONET数据库的具体步骤
3、在MATLAB中输入以下程序代码就可以实现获取physionet数据库中的软件了

cd D:\matlab\wfdb-app-toolbox-0-10-0 %安装包解压后的具体位置

就会得到下图所示加载的各项,以上就完成了To install or update a previous installation of this Toolbox:
利用MATLAB读取PHYSIONET数据库的具体步骤
4、接下来检测Test the 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.

5、运行以上的代码,MATLAB界面如下
利用MATLAB读取PHYSIONET数据库的具体步骤
得到的结果图如下
利用MATLAB读取PHYSIONET数据库的具体步骤
利用MATLAB读取PHYSIONET数据库的具体步骤
利用MATLAB读取PHYSIONET数据库的具体步骤
第一次接触physionet,并且第一次在博客上写分享,希望对大家有帮助~
[1]: https://blog.****.net/bluewn/article/details/79514798