I am not able to run my ECG pr-processing stage. This ECG is downloaded from physionet.
4 views (last 30 days)
Show older comments
Priyanka Urban
on 25 Jan 2014
Answered: Image Analyst
on 25 Jan 2014
%% clc clear all close all warning off all
%% Reading input fname=0; [fname,pname] = uigetfile('*.dat','Load standard format file'); if fname~=0 %if canceled load filename=strcat(pname,fname); data=rdsign212(filename, 2 ,250, 1800000); else errordlg('select a file','ERROR'); Main end [r c]=size(data);
error shows like below Undefined function 'rdsign212' for input arguments of type 'char'.
Error in mAIN (line 12) data=rdsign212(filename, 2 ,250, 1800000);
0 Comments
Accepted Answer
Image Analyst
on 25 Jan 2014
You evidently don't have rdsign212() in your m-file, and don't have any rdsign212.m file anywhere on your search path. Search your whole hard drive to locate a rdsign212.m file. Then either move it into a folder on your path or the current folder, or add that folder to your path. If you can't find it, ask the author/publisher of your software to supply the missing function.
0 Comments
More Answers (0)
See Also
Categories
Find more on Multirate Signal Processing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!