From 8e8c8e91036d7fd2442d9a1f5d20eb1dcbcbed06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20L=C3=B6vfors?= <william.lovfors@liu.se> Date: Tue, 21 Feb 2023 08:43:27 +0100 Subject: [PATCH] Solved a bug in the matlab version, where strings where concatenate incorrectly --- shared_datastructure/alcoholModel.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared_datastructure/alcoholModel.m b/shared_datastructure/alcoholModel.m index 293b751..66c3381 100644 --- a/shared_datastructure/alcoholModel.m +++ b/shared_datastructure/alcoholModel.m @@ -1,7 +1,7 @@ function [] = alcoholModel() modelName = "AlcoholModel_IQM"; -IQMmakeMEXmodel(IQMmodel(modelName+".txt")) +IQMmakeMEXmodel(IQMmodel([modelName, ".txt"])) m = str2func(modelName); D = parseData('data.json'); -- GitLab