yes but I am asking how can I re save them again with semicolon,
the values are saved with space or coma but not with semicolon
so is there a syntax I can used?
yes but I am asking how can I re save them again with semicolon,
the values are saved with space or coma but not with semicolon
so is there a syntax I can used?
Space is the same as a comma => separates columns
Semi-colon => separates rows
If you are expecting to write scripts with Brainstorm, you would probably save some time by reading some generic Matlab tutorials explaining how to manipulate arrays and matrices.
Hi, why saving in the form of eeglab xyz the channel.Loc: [0.0410;0.1061;0.0045]
gives different values: -10.608866 4.099918 0.454515 ?
Exporting what, from where, how, to where?
Please be more specific: add descriptions of what you're doing and screen captures.
I original channel.Loc is with semicolon is look like that:
I want to replace the above with:
My question is how to put them with semiclon, because when I put them it appear in the channel.Loc with coma or with space but not with semicolon that seems with BST it should worked jut with semicolon
If you want to modify these values, I recommend you directly edit the Matlab structures. Load the channel.mat with ChannelMat=load('/.../channel.mat'), modify the values you want, save it back with save('/.../channel.mat', '-struct', ChannelMat). I am not familiar with any other reliable solution for editing Matlab structures.
The values are not save "with or without semicolon", they are saved "as row vectors or column vectors".
If you are not familiar with Matlab syntax and matrix manipulation, you may have to teach yourself a bit about this before being able to write Matlab scripts...