diff options
author | Matt Argao <mcargao@email.wm.edu> | 2012-11-08 17:11:37 -0500 |
---|---|---|
committer | Matt Argao <mcargao@email.wm.edu> | 2012-11-08 17:11:37 -0500 |
commit | b046d548e73259fcfd74e6b01b0440441e4c8b07 (patch) | |
tree | 0ee3da126badc403662b7fd1eba6c1f24d66948d | |
parent | decb80b8f6045d68357120e4730bf279c99b9272 (diff) | |
download | mode_match-b046d548e73259fcfd74e6b01b0440441e4c8b07.tar.gz mode_match-b046d548e73259fcfd74e6b01b0440441e4c8b07.zip |
Renaming of variables for clarity
-rw-r--r-- | mode_match.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mode_match.m b/mode_match.m index b2d5f06..c08ccd6 100644 --- a/mode_match.m +++ b/mode_match.m @@ -1,4 +1,4 @@ -function [ possible_lens_placement, possible_lens_set, possible_sample_energy, n_possible_lens_placement, index ] = mode_match( q0, qf, Ltot, lambda, lens_permutations ) +function [ possible_lens_placement, possible_lens_set, possible_sample_energy, pick_of_n_best_lens_placements, index ] = mode_match( q0, qf, Ltot, lambda, lens_permutations ) %MODE_MATCH Summary of this function goes here % Detailed explanation goes here @@ -45,6 +45,6 @@ n=4; possible_lens_placement_trunc = round(possible_lens_placement*10^n)./10^n; [possible_lens_placement_uniq, index] = unique(possible_lens_placement_trunc,'rows','stable'); %Unique solutions only -n_possible_lens_placement = min(5,size(possible_lens_placement_uniq,1)); +pick_of_n_best_lens_placements = min(5,size(possible_lens_placement_uniq,1)); end |