diff options
Diffstat (limited to 'solution_stability.m')
-rw-r--r-- | solution_stability.m | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/solution_stability.m b/solution_stability.m index f3363b1..324621f 100644 --- a/solution_stability.m +++ b/solution_stability.m @@ -1,11 +1,10 @@ -function [ hist_h, hist_x ] = solution_stability( q_0, q_final, x_final, optics_positions, optics_focal_length, lambda ) +function [ hist_h, hist_x ] = solution_stability( q_0, q_final, x_final, optics_positions, optics_focal_length, lambda, n_hist ) %SOLUTION_STABILITY Summary of this function goes here % Detailed explanation goes here -n = 10000; lens_displacement = 10^-3; -x = lens_displacement*randn(n,3); +x = lens_displacement*randn(n_hist,3); -for i=1:n +for i=1:n_hist xd= x(i,:); fitness_array(i) = fitness( q_0, q_final, x_final, optics_positions + xd, optics_focal_length, lambda ); end |