Home > functions > gui > batch > batch_parm_set > vb_batch_parm_set_get_num_of_parm.m

vb_batch_parm_set_get_num_of_parm

PURPOSE ^

Return the number of parameters which this parameter set has.

SYNOPSIS ^

function [N] = vb_batch_parm_set_get_num_of_parm(obj)

DESCRIPTION ^

 Return the number of parameters which this parameter set has.
 [USAGE]
    [N] = vb_batch_parm_set_get_num_of_parm(<obj>);
 [IN]
    obj : vb_batch_parm_set object
 [OUT]
    N : the number of parameters which this parameter set has.

 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 [N] = vb_batch_parm_set_get_num_of_parm(obj)
0002 % Return the number of parameters which this parameter set has.
0003 % [USAGE]
0004 %    [N] = vb_batch_parm_set_get_num_of_parm(<obj>);
0005 % [IN]
0006 %    obj : vb_batch_parm_set object
0007 % [OUT]
0008 %    N : the number of parameters which this parameter set has.
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 %
0014 % --- Previous check
0015 %
0016 if ~exist('obj', 'var')
0017     error('obj is a required parameter.');
0018 end
0019 
0020 %
0021 % --- Main Procedure
0022 %
0023 N = size(obj.list, 1);

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