summaryrefslogtreecommitdiff
path: root/abcd_free_space.m
blob: d7b5952d63b6f67519b9178fe7c17dada696ea29 (plain)
1
2
3
4
5
6
function fs_abcd = abcd_free_space( distance)
% abcd matrix for the free space region of given distance
	fs_abcd=[1, distance; 0,1];
end