aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--abcd_mirror.m7
1 files changed, 7 insertions, 0 deletions
diff --git a/abcd_mirror.m b/abcd_mirror.m
new file mode 100644
index 0000000..6d28308
--- /dev/null
+++ b/abcd_mirror.m
@@ -0,0 +1,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
+
+