From fee84c2a8b4af71490ed98ba91a9408f3199aa75 Mon Sep 17 00:00:00 2001 From: Matt Argao Date: Tue, 13 Nov 2012 16:51:35 -0500 Subject: Added function which removes similar solutions --- remove_similar_soln.m | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 remove_similar_soln.m diff --git a/remove_similar_soln.m b/remove_similar_soln.m new file mode 100644 index 0000000..ce1c896 --- /dev/null +++ b/remove_similar_soln.m @@ -0,0 +1,16 @@ +function [ possible_lens_placement_uniq, possible_lens_placement, possible_lens_set, index ] = remove_similar_soln( possible_sample_energy, possible_lens_placement, possible_lens_set, index, n_truncate ) +%REMOVE_SIMILAR_SOLN Summary of this function goes here +% Detailed explanation goes here + +%Sorting possible solution according to energy +[possible_sample_energy, index] = sort(possible_sample_energy); +possible_lens_placement = possible_lens_placement(index,:); +possible_lens_set = possible_lens_set(index,:); + +%Truncate other possible solutions to an accuracy of n decimal places +possible_lens_placement_trunc = round(possible_lens_placement*10^n_truncate)./10^n_truncate; +[possible_lens_placement_uniq, index] = unique(possible_lens_placement_trunc,'rows','stable'); %Unique solutions only + + +end + -- cgit v1.2.3