diff --git a/doc/license.html b/doc/license.html index 7be719804..ea65938f8 100644 --- a/doc/license.html +++ b/doc/license.html @@ -5,7 +5,7 @@

THERE IS NO UNDO BUTTON!
SET UP A BACKUP OF YOUR DATABASE


-Version: 3.240318 (18-Mar-2024)
+Version: 3.240320 (20-Mar-2024)
COPYRIGHT © 2000-2024 USC & McGill University.
diff --git a/doc/version.txt b/doc/version.txt index e5dec5a48..c4d32281e 100644 --- a/doc/version.txt +++ b/doc/version.txt @@ -1,2 +1,2 @@ % Brainstorm -% v. 3.240318 (18-Mar-2024) \ No newline at end of file +% v. 3.240320 (20-Mar-2024) \ No newline at end of file diff --git a/toolbox/io/in_channel_curry_pom.m b/toolbox/io/in_channel_curry_pom.m index f4966b817..4486f8a46 100644 --- a/toolbox/io/in_channel_curry_pom.m +++ b/toolbox/io/in_channel_curry_pom.m @@ -1,5 +1,5 @@ function ChannelMat = in_channel_curry_pom(ChannelFile) -% IN_CHANNEL_CURRY_RS3: Read 3D cartesian positions for a set of points from a Curry .pom file. +% IN_CHANNEL_CURRY_POM: Read 3D cartesian positions for a set of points from a Curry .pom file. % % USAGE: ChannelMat = in_channel_curry_pom(ChannelFile) % @@ -68,7 +68,7 @@ case 'pos' xyz = sscanf(read_line, '%f %f %f') / 1000; ChannelMat.Channel(iChannel).Type = 'EEG'; - ChannelMat.Channel(iChannel).Loc = [-xyz(2); xyz(1); xyz(3)]; + ChannelMat.Channel(iChannel).Loc = [xyz(2); -xyz(1); xyz(3)]; ChannelMat.Channel(iChannel).Orient = []; ChannelMat.Channel(iChannel).Comment = ''; ChannelMat.Channel(iChannel).Weight = 1;