diff options
Diffstat (limited to 'mode_match.m')
-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 |