Thanks for you reply Francois
However i have many questions
-
If I import my raw data, as you say me. What happen with the file Simulated signal (1 x 100) (with the cerebrum icon)? I have to change this?
-
I need add the noise in a code that i generated with the process pipeline editor, thus i need modify this code. How i can access to the info (Simulated signals) in the code, and not through the BST interface?
-
Finally i need modify the file (simulated signal) inside the DB of BST, from outside the DB, in this case my own code. How i can generate this?
Note:
I have this:
sFiles = bst_process('CallProcess', 'process_simulate_matrix', ...
sFiles, [], ...
'subjectname', SubjectNames{1}, ...
'condition', num2str(i), ...
'samples', 100, ...
'srate', 100, ...
'matlab', 'Data(1,:) = 4*sin(1*pi*t)');
% Process: Simulate recordings from scouts
sFiles = bst_process('CallProcess', 'process_simulate_recordings', ...
sFiles, [], ...
'scouts', {'Mindboggle_4yMRN', {num2str(i)}}, ...
'savesources', 1);
%% in this point I need add the noise and reload the file Simulated signal
% Process: Compute sources
sFiles = bst_process('CallProcess', 'process_inverse', ...
sFiles, [], ...
'comment', '', ...
'method', 1, ... % Minimum norm estimates (wMNE)
'wmne', struct(...
'NoiseCov', [], ...
'InverseMethod', 'wmne', ...
'ChannelTypes', {{}}, ...
'SNR', 3, ...
'diagnoise', 0, ...
'SourceOrient', {{'fixed'}}, ...
'loose', 0.2, ...
'depth', 1, ...
'weightexp', 0.5, ...
'weightlimit', 10, ...
'regnoise', 1, ...
'magreg', 0.1, ...
'gradreg', 0.1, ...
'eegreg', 0.1, ...
'ecogreg', 0.1, ...
'seegreg', 0.1, ...
'fMRI', [], ...
'fMRIthresh', [], ...
'fMRIoff', 0.1, ...
'pca', 1), ...
'sensortypes', 'MEG, MEG MAG, MEG GRAD, EEG', ...
'output', 3); % Full results: one per file
Finally attached a picture of what I have in the DB
Thanks for all Francois