blob: 44242f04b541d0b2a116915136102551a219ddd0 (
plain)
1
2
3
4
5
6
7
8
|
for i=1:5
optics_position = possible_lens_placement(i,:);
optics_set = possible_lens_set(i,:);
[hist_h, hist_x] = solution_stability( q0, qf, xf, optics_position, optics_set, lambda );
plot(hist_x, hist_h);
end
|