aboutsummaryrefslogtreecommitdiff
path: root/abcd_lens.m
blob: dcc34ff3807e1d08f166e350b0259ab997f2857d (plain)
1
2
3
4
5
6
function lens_abcd =abcd_lens(focal_distance)
% abcd matrix of the lens with given focal length
	lens_abcd = [1, 0; -1/focal_distance, 1];
end