week 6 Flashcards
QRS Complex
a breakdown of parts of a ecg wave consists of:
PR interval
PR segment
QRS complex
QT segment
ST segment
atrial depolarization occurs during the…
PR interval
ventricle depolarization occurs during the…
QRS complex
ventricle repolarization occurs during the…
ST segment
when creating filters in matlab, N should be equal to
the length of the ECG wave
what construct can we use to calculate symmetrical/asymmetrical filters?
for loop
symmetrical filter for loop example
for i = 2:(N-1)
sym3(i-1) = (ECG(i-1) + ECG(i) + ECG(i+1))/3
end
asymmetrical filter for loop example
for i = 1:(N-2)
asym3(i) = mean(ECG(i:i+2))
end
3 classes of signal
periodic, aperiodic, step like (transient)
square wave in matlab
use square function!
looks like square humps
pulse train wave
small humps with wide gaps in between
sawtooth wave in matlab
use sawtooth function!
looks like backwards N
equation for sinusoidal wave form
x(t) = A sin(2 pi f t + 6)
A is the amplitude
f is the frequency
t is the period
6 is the phase
T = ?
(T is phase)
1/f
(f is frequency)
x(t) = ??
x(t + T)
t is time
T is period