week 6 Flashcards

1
Q

QRS Complex

A

a breakdown of parts of a ecg wave consists of:
PR interval
PR segment
QRS complex
QT segment
ST segment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

atrial depolarization occurs during the…

A

PR interval

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

ventricle depolarization occurs during the…

A

QRS complex

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

ventricle repolarization occurs during the…

A

ST segment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

when creating filters in matlab, N should be equal to

A

the length of the ECG wave

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what construct can we use to calculate symmetrical/asymmetrical filters?

A

for loop

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

symmetrical filter for loop example

A

for i = 2:(N-1)
sym3(i-1) = (ECG(i-1) + ECG(i) + ECG(i+1))/3
end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

asymmetrical filter for loop example

A

for i = 1:(N-2)
asym3(i) = mean(ECG(i:i+2))
end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

3 classes of signal

A

periodic, aperiodic, step like (transient)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

square wave in matlab

A

use square function!
looks like square humps

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

pulse train wave

A

small humps with wide gaps in between

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

sawtooth wave in matlab

A

use sawtooth function!
looks like backwards N

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

equation for sinusoidal wave form

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

T = ?
(T is phase)

A

1/f
(f is frequency)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

x(t) = ??

A

x(t + T)

t is time
T is period

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

how many periods is required to completely define a periodic signal?

A

1
periodic means that each phase is the same

16
Q

aperiodic signal

A

exists over finite time frame but are zero before and after the time frame

17
Q

aperiodic signals are treated as ____ with a period that approaches ____

A

periodic
infinity

18
Q

operations can only be applied to ___ segments

A

non-zero

19
Q

how do you average data with different lengths?

A

interpolate the data before averaging

20
Q

transient signal

A

increases infinitely and doesn’t return to initial value, hardest to treat mathematically because any operation must be carried out to infinity

21
Q

what is the best way to gain insight on a signal?

A

compare to reference signal or family of related reference signals

22
Q

reference signals need to be…

A

known and not complex
ex: sin wav

23
Q

correlation

A

quantitative comparison between two signals

24
Q

correlation function in matlab

A

corrcoef(x, y)

25
Q

correlation coefficient

A

number that signifies similarity between two signals, this number is between -1 and +1

26
Q

crosscorrelation

A

correlating over many different time shifts or lags

27
Q

lag

A

continuous variable of time used to shift x(t) with respect to y(t)

28
Q

what is the result of crosscorrelation?

A

series of correlations between signals for different points in time.

like correlating x(t) and one second and y(t) at one second and storing that value, then doing it for two seconds and so on