• This project
    • Loading...
  • Sign in

ftract_dev / ImaGIN2 · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 11
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • ImaGIN2
  • prepare_ImaGIN_CropAuto.m
  • forcing compilation
    b13a8c3c
    by Maciej Jedynak
    2018-04-09 17:05:55 +0200  
    Browse Files
prepare_ImaGIN_CropAuto.m 374 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
function prepare_ImaGIN_CropAuto(NameStim,FileIn,FileOut)
   
% FileIn: path linking to the MEEG file to dissect

clear S;
S.dataset = fullfile(FileIn); 
S.DirFileOut = FileOut;

if ischar(NameStim)
    NameStim=str2num(NameStim);
end

if ~isempty(NameStim) && NameStim ~= 0
    S.StimName = NameStim;
else
    S.StimName = []; 
end
D = ImaGIN_CropAuto(S);

close all 

end