aboutsummaryrefslogtreecommitdiff
path: root/remove_similar_soln.m
diff options
context:
space:
mode:
authorMatt Argao <mcargao@email.wm.edu>2013-03-31 22:35:49 -0400
committerMatt Argao <mcargao@email.wm.edu>2013-03-31 22:35:49 -0400
commit4d08c162d5ce4ac8b7eaeb9d985bfef62c886e99 (patch)
tree45733367770ddc4585faa09976b403a858d5d8e5 /remove_similar_soln.m
parent2f3d161985ae2e57ed966981e58eb117d3a49c71 (diff)
downloadmode_match-4d08c162d5ce4ac8b7eaeb9d985bfef62c886e99.tar.gz
mode_match-4d08c162d5ce4ac8b7eaeb9d985bfef62c886e99.zip
Added descriptions to each function.v3.0
Diffstat (limited to 'remove_similar_soln.m')
-rw-r--r--remove_similar_soln.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/remove_similar_soln.m b/remove_similar_soln.m
index 9bea732..a106aff 100644
--- a/remove_similar_soln.m
+++ b/remove_similar_soln.m
@@ -1,6 +1,6 @@
function [ possible_lens_placement_uniq, possible_lens_placement, possible_sample_energy, possible_lens_set, index ] = remove_similar_soln( possible_sample_energy, possible_lens_placement, possible_lens_set, n_truncate )
-%REMOVE_SIMILAR_SOLN Summary of this function goes here
-% Detailed explanation goes here
+%Removes similar solutions based on n_truncate (decimal tolerance to
+%determin uniqueness)
%Sorting possible solution according to energy
[possible_sample_energy, index] = sort(possible_sample_energy);