|
- function plotItersOverGamma(gamma, iterations, plot_title, filename)
-
-
-
-
-
-
-
-
-
-
- global image_width,
- global image_height;
-
- figure('Name', 'Iterations_over_gamma', 'NumberTitle', 'off');
- set(gcf, 'Position', [100, 100, image_width, image_height]);
- plot(gamma, iterations, '*r', 'LineWidth', 2);
-
-
- title(plot_title, 'Interpreter', 'latex', 'FontSize', 16);
- xlabel('\gamma') ;
- ylabel('Iterations');
-
-
- if strcmp(filename, '') == 0
- print(gcf, filename, '-dpng', '-r300');
- end
- end
|