From 2946b7ea53287e3a5f898b9fb246b56bcf207f8b Mon Sep 17 00:00:00 2001
From: Johannes Pfeifer <jpfeifer@gmx.de>
Date: Fri, 27 Dec 2024 14:34:47 +0100
Subject: [PATCH] :bug: identification: fix inconsistent variable dimensions

---
 matlab/+identification/run.m | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/matlab/+identification/run.m b/matlab/+identification/run.m
index 38bfe21eed..41319925c2 100644
--- a/matlab/+identification/run.m
+++ b/matlab/+identification/run.m
@@ -485,7 +485,7 @@ if iload <=0
             kk=0;
             while kk<50 && info(1)
                 kk=kk+1;
-                params = Prior.draw();
+                params = Prior.draw()'; %column vector is expected
                 options_ident.tittxt = 'Random_prior_params'; %title text for graphs and figures
                 % perform identification analysis
                 [ide_moments_point, ide_spectrum_point, ide_minimal_point, ide_hess_point, ide_reducedform_point, ide_dynamic_point, ~, info, error_indicator_point] = ...
-- 
GitLab