• 大小: 10KB
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Matlab
  • 标签: matlab  

资源简介

用于读取edf格式文件的matlab代码,可进行edf文件的读取,将其转化为.mat文件,可直接运行。

资源截图

代码片段和文件信息

function [hdr record] = edfread(fname varargin)
% Read European Data Format file into MATLAB
%
% [hdr record] = edfread(fname)
%         Reads data from ALL RECORDS of file fname (‘*.edf‘). Header
%         information is returned in structure hdr and the signals
%         (waveforms) are returned in structure record with waveforms
%         associated with the records returned as fields titled ‘data‘ of
%         structure record.
%
% [...] = edfread(fname ‘assignToVariables‘ assignToVariables)
%         Triggers writing of individual output variables as defined by
%         field ‘labels‘ into the caller workspace.
%
% [...] = edfread(...‘desiredSignals‘desiredSignals)
%         Allows user to specify the names (or position numbers) of the
%         subset of s

评论

共有 条评论