Home > functions > gui > bm_editor > bm_process_parm > separate_surf_parm > separate_surf_parm_new.m

separate_surf_parm_new

PURPOSE ^

create separate_surf_parameter object

SYNOPSIS ^

function [obj] = separate_surf_parm_new()

DESCRIPTION ^

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

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