Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

.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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Carlos Coronel, Steven Morris

14th Edition

978-0357673034

More Books

Students also viewed these Databases questions