Raw File
observation_model.m
function [ zi ] = observation_model( orientation, position, fi )

    zi=orientation'*(fi-position);


end

back to top