aboutsummaryrefslogtreecommitdiff
path: root/abcd_mirror.m
blob: 6d28308710d9972d4f4c0261c5e6857559ff9503 (plain)
1
2
3
4
5
6
7
function abcd =abcd_mirror(radius_of_curvature)
% abcd matrix of the mirror with given radius of curvature
% it is equivalent to a lens with f=R/2
	abcd = abcd_lens(radius_of_curvature/2);
end