Midterm Study Flashcards

1
Q

What is the DSP top level block diagram?

A

Transducer connected to the body > A/D converter > DSP> DAC converter > informative display

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

Why do we rarely need a FPGA in biomedical applications?

A

The human body is very bandwidth limited.

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

Most signals in the real world are what type of signals?

A

Analog signals

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

What do transducers do?

A

They provide continuous electrical signals

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

What do processors require?

A

Bits of data that represent logic ones and zeros

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

What is the quantization error?

A

The difference between he quantized level and the analog signal

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

Equation for quantization error?

A

(q^2)/12

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

What does the quantization noise term tell us?

A

The error term is a function of the smallest step size possible

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

What is dynamic range?

A

The range over which we can recover a signal

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

Largest signal we can detect?

A

Given: 2^n quantization bands each at q wide, then maximum sine wave that can be encoded is (2^n)*q

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

What is the smallest signal we can detect?

A

q, anything less ends up in lowest band

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

How would you convert the resultant dynamic range into dB?

A

20 log (2^n)

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

ADC resolution limitations result in what?

A

quantization errors

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

increasing the sample rate also increases what?

A

bandwidth able to use

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

What if the sampling rate is not sufficiently high?

A

Signals alias into digital systems at a false frequency, end up having an entirely differnt frequency present

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

The minimum sampling rate is called what?

A

Nyquist Rate

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

How to get the Nyquist rate?

A

Take sampling rate and divide by two. The positive and negative of this number is the Nyquist frequency range.

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

Fast fourier transforms put the frequency from the

A

time domain to the frequency domain

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

Aperiodic-Continuous

A

Analog signals that extend from negative infinity to positive infinity without repeating. (decaying exponentials would meet this criteria) The Fourier Transform is applied to these type of signals

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

Periodic-Continuous

A

Sine waves or any waveform that repeats periodically from negative to positive infinity. The Fourier Series is applied to enable the Fourier transform

21
Q

Aperiodic-Discrete

A

Discrete digital signals that do not repeat between positive and negative infinity, such as a digitized decaying exponential. The type of Fourier Transform that is applied to this type of signal is the Discrete Time Fourier Transform.

22
Q

Periodic-Discrete

A

Discrete signals that repeat themselves between positive and negative infinity. The class of Fourier Transform that is applied is the Discrete Fourier Transform

23
Q

What is the equation of the Fourier Transform

A

f(t) = av + Σ an cos n w0 t + bn sin n w0 t

24
Q

What are the two properties of Fourier Transforms

A

homogeneity: change in amplitude in one domain = change in amplitude in other domain
Additivity: addition in one domain = addition in other domain

25
What is the digital frequency?
how many samples we have per the fundamental frequency
26
What is the equation for digital frequency?
F = f/ fs = f*ts fs = sampling frequency ts = sampling period
27
if you had a frequency of 10 Hz and it was sampled 5 times per cycle, then you would need a sampling frequency of...
F= ts*f = 5 times per sample * 10 Hz = 50 Hz
28
If a 50 Hz signal is sampled at 250 Hz, what is the digital frequency?
F = 50 / 250 = 0.2 cycles per sample or (0.2*2pi) = 1.26 rad per sample
29
What does the DIscrete Fourier Transform do?
Transforms data between the time domain and frequency domain
30
What does the P wave correspond to?
Atrial depolarization
31
What does the sinoatrial node initiate?
electrical impulse
32
What does the QRS complex represent?
Ventricular depolarization (electrical signal that causes ventricles to contract)
33
Where does the elecrical impulse travel from?
atrioventricular node
34
Q wave is initial _______, R wave is the __________ and the S wave is the __________
downward deflection, upward deflection, downward deflection
35
What does the T wave represent?
ventricular reolarization (recovering electrically after contraction)
36
What happens to the heart muscle cells during repolarization?
return to their resting electrical state
37
What is a filter's purpose?
provide frequency selectivity characteristics
38
What is the pass band?
frequencies where minimal input signal attenuation is provided
39
What is the stop band?
The frequency at which the filter attenuates
40
What is the gain equation?
Gain (dB) = 20 *log(gain) = 20*log(output/input)
41
What does a low pass filter do?
passes low frequenices and attenuates high frequencies
42
What happens when there is linear phase shift?
The filter's time delay is constant with respect to frequency
43
What happens when there is no linear phase shift?
The input waveform will be distorted when it emerges from the filter
44
What can filtering to tighter bandwidths do?
Reduce noise levels and make signals easier to detect.
45
The basic ECG filter is what?
A low pass filter to pass the P,T and QRS waves while rejecting higher 60 Hz noise frequency
46
What is convolution?
A mathematical approach to combine two signals, considered the tecnique upon which DSP is based.
47
What do we do when we convolve two functions?
We multiply one by a flipped and shifted version of the other and sum
48
What is the equation for convolution?
Y(n) = Σ Bk * x(n -k)
49