Home > vbmeg > demo > test_scripts > sbi > load_sbi_meg_data.m

load_sbi_meg_data

PURPOSE ^

Load MEG data

SYNOPSIS ^

function [bexp,eog] = load_sbi_meg_data(megfile)

DESCRIPTION ^

 Load MEG data
  [bexp] = load_sbi_meg_data(megfile)
  [bexp,eog] = load_sbi_meg_data(megfile)

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function    [bexp,eog] = load_sbi_meg_data(megfile)
0002 % Load MEG data
0003 %  [bexp] = load_sbi_meg_data(megfile)
0004 %  [bexp,eog] = load_sbi_meg_data(megfile)
0005 %
0006 % Copyright (C) 2011, ATR All Rights Reserved.
0007 % License : New BSD License(see VBMEG_LICENSE.txt)
0008 
0009 switch nargout 
0010 case    1
0011     load(megfile, 'bexp');
0012 case    2
0013     load(megfile, 'bexp','eog');
0014 end

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005