From a653f1a5741b23785083c4084ee627414c19b60b Mon Sep 17 00:00:00 2001
From: Willi Mutschler <willi@mutschler.eu>
Date: Fri, 14 Feb 2020 13:45:47 +0100
Subject: [PATCH] :bug: Fix displaying of wrong order in disp_identification

(cherry picked from commit 62230166836e5d9ba17f14a38664622ad06047d6)
---
 matlab/disp_identification.m | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/matlab/disp_identification.m b/matlab/disp_identification.m
index 716d52f638..29142c2fa8 100644
--- a/matlab/disp_identification.m
+++ b/matlab/disp_identification.m
@@ -93,9 +93,9 @@ for jide = 1:4
     elseif jide == 2
         strTest = 'MINIMAL SYSTEM (Komunjer and Ng, 2011)'; strJacobian = 'Deltabar'; strMeaning = 'Jacobian of steady state and minimal system';
         if options_ident.order == 2
-            strMeaning = 'Jacobian of second-order accurate mean and first-order minimal system';
+            strMeaning = 'Jacobian of first-order minimal system and second-order accurate mean';
         elseif options_ident.order == 3
-            strMeaning = 'Jacobian of second-order accurate mean and first-order minimal system';
+            strMeaning = 'Jacobian of first-order minimal system and third-order accurate mean';
         end
         if ~no_identification_minimal
             noidentification = 0; ide = ide_minimal;
-- 
GitLab