Noise Filtering Flashcards
______ _______ is removing noise from a signal. There are several ________ algorithms that achieve this
Signal processing, filtering
What is LOESS smoothing?
A technique to smooth a curve and to remove the effects of noise
What are the steps in LOESS?
Take local section of data
Fit a line to it
Declare that line to be the part of the curve for the middle of the section
Slide the window along, generating a curve as you go
In LOESS smoothing, what do small and large fractions imply?
Small fractions are sensitive to noise and a small region
Large fractions wont respond as the signal changes
LOESS is best used when?
When there are lots of samples
______ filtering is designed to take into account domain knowledge of the signal
Kalman
Kalman filtering works best if you know the following 4 things: How much \_\_\_\_\_\_ in measurements How \_\_\_\_\_ it changes A \_\_\_\_\_\_ for the next value How much \_\_\_\_\_ you expect on the above
error, fast, prediction, error
In Kalman filtering, we assume out noise follows a _______ distribution
normal
The range from avg-std dev. to avg+std dev. contains __% of the observations
68
______ says how 2 variables relate
covariance
What are transition_matrix, observation_covariance, and transition_covariance?
transition_matrix: Prediction of next value based on current value
observation_covariance: Represents error in the measurement
transition_covariance: Represents error in your prediction
Filtering frequencies is good for ______ data
periodic
What is lowpass and highpass?
Lowpass: Keep low and discard high frequencies
Highpass: Opposite of lowpass
The _________ filter is a common choice to filter signals
Butterworth