Created
June 20, 2018 21:00
-
-
Save niladridas/91a054d0a8f8b9511129ab5a047cc437 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Take a covariance matrix nxn | |
P = [2 1 1; 1 3 1;1 1 5] | |
C = eye(3,3) | |
R = [1 0 0; 0 2 0;0 0 300000] | |
K = P*C'*inv(C*P*C'+R) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment