Home > functions > gui > brain_file_maker > job_brain_std2sbj_parm > job_brain_std2sbj_parm_set_parm.m

job_brain_std2sbj_parm_set_parm

PURPOSE ^

set job_brain_std2sbj_parm_set_parm One-line description here, please.

SYNOPSIS ^

function [obj, result] = job_brain_std2sbj_parm_set_parm(obj, parm)

DESCRIPTION ^

 set job_brain_std2sbj_parm_set_parm  One-line description here, please.
 [USAGE]
    [obj, result] = job_brain_std2sbj_parm_set_parm(<obj>);
 [IN]
     obj : job_brain_std2sbj_parm object
    parm : 
 [OUT]
       obj : job_brain_std2sbj_parm object
    result : SUCCESS or FAILURE

 Author: rhayashi
 Created: 2007-07-25

 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, result] = job_brain_std2sbj_parm_set_parm(obj, parm)
0002 % set job_brain_std2sbj_parm_set_parm  One-line description here, please.
0003 % [USAGE]
0004 %    [obj, result] = job_brain_std2sbj_parm_set_parm(<obj>);
0005 % [IN]
0006 %     obj : job_brain_std2sbj_parm object
0007 %    parm :
0008 % [OUT]
0009 %       obj : job_brain_std2sbj_parm object
0010 %    result : SUCCESS or FAILURE
0011 %
0012 % Author: rhayashi
0013 % Created: 2007-07-25
0014 %
0015 % Copyright (C) 2011, ATR All Rights Reserved.
0016 % License : New BSD License(see VBMEG_LICENSE.txt)
0017 
0018 %
0019 % --- Previous check
0020 %
0021 if ~exist('obj', 'var'), error('obj is a required parameter.'); end
0022 
0023 %
0024 % --- Main Procedure
0025 %
0026 result = job_brain_std2sbj_parm_check_parm(obj);
0027 obj.parm = parm;
0028 
0029 %
0030 % --- After check
0031 %
0032 if nargout ~= 2
0033     error('function caller should receive obj and result');
0034 end

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