Home > functions > gui > bm_editor > bm_list > bm_list_new.m

bm_list_new

PURPOSE ^

create bm_list object

SYNOPSIS ^

function [obj] = bm_list_new()

DESCRIPTION ^

 create bm_list object
 [USAGE]
    [obj] = bm_list_new;
 [IN]
    none
 [OUT]
    obj : bm_list object

 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 [obj] = bm_list_new()
0002 % create bm_list object
0003 % [USAGE]
0004 %    [obj] = bm_list_new;
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    obj : bm_list object
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 obj = struct;
0014 
0015 % set class type
0016 obj.class_type = 'bm_list';
0017 
0018 %
0019 % --- Member initialize
0020 %
0021 obj.brain_data_list = [];
0022 
0023 
0024 %
0025 % --- After check
0026 %
0027 if nargout ~= 1
0028     error('function caller should receive obj.');
0029 end

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005