From dbb80a241d85c3b306949b7178d34e0f99fa0a7c Mon Sep 17 00:00:00 2001 From: JesperLH Date: Mon, 18 Feb 2019 18:49:47 -0500 Subject: [PATCH] Updated visualization --- eusipco/visualize_exp_synthetictensor.m | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/eusipco/visualize_exp_synthetictensor.m b/eusipco/visualize_exp_synthetictensor.m index d6c3234..a5db5ab 100644 --- a/eusipco/visualize_exp_synthetictensor.m +++ b/eusipco/visualize_exp_synthetictensor.m @@ -5,6 +5,7 @@ is_rmse = true; max_sd = zeros(4,1); i_max_sd = 1; +font_size = 12; for is_known = [true, false] for is_rmse = [true, false] @@ -52,29 +53,29 @@ str_perms = strcat('(',strrep(string(num2str(all_permuations)),' ',','),')'); xticklabels(str_perms(i_xticks)) xtickangle(90) - xlabel('All possible permutations') + xlabel('All possible permutations','Fontsize',font_size) %Setup colorbar cbh = colorbar; colormap(snr_colors); c_min = min(snr_colors(:,1)); c_max = max(snr_colors(:,1)); caxis([c_min,c_max]) - set(cbh, 'Ticks', [c_min, c_max], 'TickLabels',{'Low SNR', 'High SNR'}) + set(cbh, 'Ticks', [c_min, c_max], 'TickLabels',{'Low SNR', 'High SNR'},'Fontsize',font_size-1) % Fix ylabel and title if is_rmse - ylabel('Relative RMSE') + ylabel('Relative RMSE','Fontsize',font_size) save_ext = 'rmse'; else - ylabel('Evidence Lowerbound (ELBO)') + ylabel('Evidence Lowerbound','Fontsize',font_size) save_ext = 'elbo'; end if is_known - title('Known model order') + title('Known model order','Fontsize',font_size+2) save_pre = 'known'; else - title('Unknown model order') + title('Unknown model order','Fontsize',font_size+2) save_pre = 'unknown'; end