Neuromechanics & Motor Control - Lecture 15

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/28

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

29 Terms

1
New cards

Kalman filter

Estimation technique that combines internal model predictions with sensory observations to provide an optimal estimate of a system’s state

2
New cards

Forward model

Predictive model that estimates the outcome of motor commands before sensory feedback is available

3
New cards

Equation for fast prediction of state using internal model and control input

\hat{x}_{n}=A_{i}\hat{x}_{n-1}+B_{i}u_{n}+w_{n}

4
New cards

Predicted sensory feedback based on current state estimate

\hat{y}_{n}=C_{i}\hat{x}_{n}+v_{n}

5
New cards

Actual sensory observation of the system’s state

y_{n}

6
New cards

Predicted next state in Kalman filtering

\hat{x}_{\bar{k}}=A\hat{x}_{k-1}+Bu_{k}

7
New cards

Actual sensory feedback in Kalman filtering

z_{k}

8
New cards

Updated state estimate using Kalman gain and sensory error

\hat{x}_{k}=\hat{x}_{\bar{k}}+K_{k}\left(z_{k}-H\hat{x}_{\bar{k}}\right)

9
New cards

K_{k} (Kalman gain)

Factor that determines the weighting between prediction and observation in state estimation

10
New cards

Cerebellum

Brain region involved in motor control, coordination, and motor learning, functioning as a comparator of intended and actual movements

11
New cards

Motor control functions of cerebellum

Equilibrium, posture, and reaching

12
New cards

Coordination functions of cerebellum

Timing, precision, accuracy, and reflex adjustment

13
New cards

Motor learning in cerebellum

Learning motor skills and calibrating sensorimotor relationships

14
New cards

Cerebellar lesion effects

Impaired coordination and learning of new motor tasks without affecting muscle strength or perception

15
New cards

Formula for combining two noisy estimates into an optimal estimate

x_{\text{new}} = \frac{\sigma_2^2 x_1 + \sigma_1^2 x_2}{\sigma_1^2 + \sigma_2^2}

16
New cards

Formula for variance of the combined estimate

\sigma_{\text{new}}^2 = \frac{\sigma_1^2 \sigma_2^2}{\sigma_1^2 + \sigma_2^2}

17
New cards

Prediction equation with process noise in scalar Kalman filter

x_{n}=ax_{n-1}+w_{n}

18
New cards

Observation equation with measurement noise in scalar Kalman filter

y_{n}=cx_{n}+v_{n}

19
New cards

Predicted state estimate in scalar Kalman filter

\tilde{x}_{n}^{\text{pred}} = a\hat{x}_{n-1}

20
New cards

Observation-based estimate of the state

\tilde{x}_{n}^{\text{obs}} = \frac{y_n}{c}

21
New cards

Predicted variance based on previous variance and process noise

\tilde{P}_{n}^{\text{pred}} = aP_{n} + Q

22
New cards

Variance of the observation-based estimate

\tilde{P}_{n}^{\text{obs}} = \frac{R^2}{c}

23
New cards

Optimal estimate in scalar Kalman filter

\hat{x}_n = a \hat{x}_{n-1} + \frac{K}{c} \left( y_n - c a \hat{x}_{n-1} \right)

24
New cards

Formula for Kalman gain based on prediction variance and measurement noise

K=\frac{c \tilde{P}_{n}^{\text{pred}}}{R + c^2 \tilde{P}_{n}^{\text{pred}}}

25
New cards

Updated variance of the state estimate after applying Kalman gain

P_n = (1 - Kc) \tilde{P}_{n}^{\text{pred}}

26
New cards

Bayesian formulation of optimal state estimation using prediction and observation

p(\hat{x}_n, y_n) = p(y_n | \hat{x}_n) p(\hat{x}_n)

27
New cards

Model identification with Kalman filter

Estimating model coefficients θn using system observations and Kalman filtering

28
New cards

Coefficients representing system dynamics in model identification

θn = [a1, a2, b0, b1, c1, c2]

29
New cards

Input vector used for model identification in Kalman filtering

ϕn = [yn−1, yn−2, rn, rn−1, vn−1, vn−2]