diff options
author | Matt Argao <mcargao@email.wm.edu> | 2013-03-31 22:35:49 -0400 |
---|---|---|
committer | Matt Argao <mcargao@email.wm.edu> | 2013-03-31 22:35:49 -0400 |
commit | 4d08c162d5ce4ac8b7eaeb9d985bfef62c886e99 (patch) | |
tree | 45733367770ddc4585faa09976b403a858d5d8e5 /gbeam_propagation.m | |
parent | 2f3d161985ae2e57ed966981e58eb117d3a49c71 (diff) | |
download | mode_match-3.0.tar.gz mode_match-3.0.zip |
Added descriptions to each function.v3.0
Diffstat (limited to 'gbeam_propagation.m')
-rw-r--r-- | gbeam_propagation.m | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gbeam_propagation.m b/gbeam_propagation.m index d81f70e..585048d 100644 --- a/gbeam_propagation.m +++ b/gbeam_propagation.m @@ -1,4 +1,4 @@ -function q = gbeam_propagation(x_pos, q_in, x_in, optics_elements) +function [q] = gbeam_propagation(x_pos, q_in, x_in, optics_elements) % calculate the 'q' parameter of the Gaussian beam propagating through optical % 'optics_elements' array along 'x' axis at points 'x_pos' % takes the gaussian beam with initial q_in parameter at x_in @@ -8,7 +8,7 @@ function q = gbeam_propagation(x_pos, q_in, x_in, optics_elements) if any(x_pos >= x_in) % Forward propagation to the right of x_in - q(x_pos >= x_in) = gbeam_propagation_froward_only(x_pos(x_pos>=x_in), q_in, x_in, optics_elements); + [q(x_pos >= x_in)] = gbeam_propagation_froward_only(x_pos(x_pos>=x_in), q_in, x_in, optics_elements); end if any(x_pos < x_in) @@ -45,8 +45,10 @@ function q = gbeam_propagation(x_pos, q_in, x_in, optics_elements) % final assignment of the backwards propagating beam % which we need to flip back q(x_pos<x_in) = fliplr(q_backw); - end + end + + end %!test |