From ba43e27ffc1ac2436c9d5ae83b68f7ffb5169381 Mon Sep 17 00:00:00 2001 From: Filippo Uslenghi <75318053+FilippoUslenghi@users.noreply.github.com> Date: Tue, 12 May 2026 15:38:30 +0000 Subject: [PATCH 1/2] changed function to match the map name --- importcarto_mem.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importcarto_mem.m b/importcarto_mem.m index c5a9310..bdfb546 100644 --- a/importcarto_mem.m +++ b/importcarto_mem.m @@ -221,7 +221,7 @@ ' points identified. Check the number of points specified is correct.']); end elseif ischar(mapToRead_cli) - selection = find(strstartcmpi(mapToRead_cli, names)); + selection = find(strcmpi(mapToRead_cli, names)); end end From 80210f47f5927c3be32532c1e86ac1a8d7d6fc75 Mon Sep 17 00:00:00 2001 From: Filippo Uslenghi <75318053+FilippoUslenghi@users.noreply.github.com> Date: Tue, 12 May 2026 16:27:24 +0000 Subject: [PATCH 2/2] updated save function to use v7.3 when using cli --- importcarto_mem.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/importcarto_mem.m b/importcarto_mem.m index bdfb546..8927613 100644 --- a/importcarto_mem.m +++ b/importcarto_mem.m @@ -746,7 +746,7 @@ % Encourage user to save the data if ~isempty(saveFileName_cli) - save(saveFileName_cli, 'userdata'); + save(saveFileName_cli, 'userdata', '-v7.3'); %needed as sometimes >2GB matFileFullPath = saveFileName_cli; else defaultName = [map.studyName '_' map.name];