diff --git a/matlab/plot_identification.m b/matlab/plot_identification.m
index e534b43178d1767bc7677501311f1ff3657efc84..82c5cea21a10a413b7812a777f3360ffab04f13e 100644
--- a/matlab/plot_identification.m
+++ b/matlab/plot_identification.m
@@ -60,9 +60,9 @@ if SampleSize == 1
     mmm = (idehess.ide_strength_dMOMENTS);
     [ss, is] = sort(mmm);
     if ~all(isnan(idehess.ide_strength_dMOMENTS_prior))
-        bar(log([idehess.ide_strength_dMOMENTS(:,is)' idehess.ide_strength_dMOMENTS_prior(:,is)']))
+        bar(1:nparam,log([idehess.ide_strength_dMOMENTS(:,is)' idehess.ide_strength_dMOMENTS_prior(:,is)']))
     else
-        bar(log([idehess.ide_strength_dMOMENTS(:,is)' ]))
+        bar(1:nparam,log([idehess.ide_strength_dMOMENTS(:,is)' ]))
     end
     hold on
     plot((1:length(idehess.ide_strength_dMOMENTS(:,is)))-0.15,log([idehess.ide_strength_dMOMENTS(:,is)']),'o','MarkerSize',7,'MarkerFaceColor',[0 0 0],'MarkerEdgeColor','none')
@@ -106,9 +106,9 @@ if SampleSize == 1
 
     subplot(212)
     if ~all(isnan(idehess.deltaM_prior))
-        bar(log([idehess.deltaM(is) idehess.deltaM_prior(is)]))
+        bar(1:nparam, log([idehess.deltaM(is) idehess.deltaM_prior(is)]))
     else
-        bar(log([idehess.deltaM(is)]))
+        bar(1:nparam, log([idehess.deltaM(is)]))
     end
     hold on
     plot((1:length(idehess.deltaM(is)))-0.15,log([idehess.deltaM(is)']),'o','MarkerSize',7,'MarkerFaceColor',[0 0 0],'MarkerEdgeColor','none')