Code covered by the BSD License  

Highlights from
Implementations of Kalman Filter using both message passing algorithm and standard matrix operations

image thumbnail
from Implementations of Kalman Filter using both message passing algorithm and standard matrix operations by Shuang Wang
This is a demo of using message passing algorithm (belief propagation) to implement Kalman Filter.

eyeInf(len)
%% generate eye inf.
% author: Shuang Wang
% email: shw070@ucsd.edu
% Division of Biomedical Informatics, University of California, San Diego.
function a = eyeInf(len)
    a = zeros(len);
    a(1:length(a)+1:numel(a)) = Inf;
end

Contact us