diff options
Diffstat (limited to 'axial/lens.m')
-rw-r--r-- | axial/lens.m | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/axial/lens.m b/axial/lens.m new file mode 100644 index 0000000..a75b2f4 --- /dev/null +++ b/axial/lens.m @@ -0,0 +1,21 @@ +%---------------------------------------------------------------
+% Returns the ABCD matrix for propagation through a thin lens.
+%
+% SYNTAX: abcd=lens(f);
+%
+%
+% f = lens focal length
+%
+% abcd = | 1 0 |
+% |-1/f 1 |
+%
+%---------------------------------------------------------------
+% SYNTAX: abcd=lens(f);
+%---------------------------------------------------------------
+
+function abcd=lens(f)
+
+abcd=[
+ 1 0
+ -1/f 1
+];
\ No newline at end of file |