Question
.Load the file ECG_1min.mat that contains 1minute of ECG data in variable ecg. Take the Fourier transform. Plot both the magnitude and phase (unwrapped) spectrum
.Load the file ECG_1min.mat that contains 1minute of ECG data in variable ecg. Take the Fourier transform. Plot both the magnitude and phase (unwrapped) spectrum up to 20-Hz and do not include the DC term. Find the average heart rate using the strategy found in Example 3.13. The samplefrequencyis250-Hz.
Code to see ecg data
function importfile(fileToRead1) %IMPORTFILE(FILETOREAD1) % Imports data from the specified file % FILETOREAD1: file to read
% Auto-generated by MATLAB on 16-Apr-2017 21:32:29
% Import the file newData1 = load('-mat', fileToRead1);
% Create new variables in the base workspace from those fields. vars = fieldnames(newData1); for i = 1:length(vars) assignin('base', vars{i}, newData1.(vars{i})); end
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started