Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions importcarto_mem.m
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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];
Expand Down