Skip to content

Commit

Permalink
added missing variable to eval_methods.m
Browse files Browse the repository at this point in the history
  • Loading branch information
mschiffn committed May 8, 2020
1 parent b727752 commit dfff028
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions eval_methods.m
Expand Up @@ -367,8 +367,6 @@

text_size = 10;

size_legend = size_label;

%--------------------------------------------------------------------------
% axis limits and ticks
%--------------------------------------------------------------------------
Expand Down Expand Up @@ -411,6 +409,12 @@
title_factor_shift_x = 0;
title_factor_shift_y = -0.075;

%--------------------------------------------------------------------------
% legend
%--------------------------------------------------------------------------
legend_font = 'Times';
legend_size = label_size;

%--------------------------------------------------------------------------
% dependent parameters
%--------------------------------------------------------------------------
Expand Down Expand Up @@ -446,7 +450,6 @@
set( gcf, 'Position', [ 10, 10, paper_size_x, paper_size_y ] );
set( gcf, 'PaperSize', [ paper_size_x, paper_size_y ] );
set( gcf, 'PaperPositionMode', 'auto');
set(gcf, 'NextPlot', 'replacechildren');

axes_hdl = zeros( 1, N_plots_x * N_plots_y );

Expand Down Expand Up @@ -474,7 +477,7 @@
% legend
%----------------------------------------------------------------------
leg_hdl = legend( { 'linear propagation', 'nonlinear propagation' }, 'Location', 'northoutside', 'Orientation', 'horizontal', 'Units', 'centimeters' );
set( leg_hdl, 'FontSize', size_legend );
set( leg_hdl, 'FontName', legend_font, 'FontSize', legend_size );
set( leg_hdl, 'Position', [ pos_x( 2 ), pos_y( 1 ) + width_axis_y + delta_lgd, width_axis_x, height_lgd ] );

%----------------------------------------------------------------------
Expand Down

0 comments on commit dfff028

Please sign in to comment.