Home > functions > gui > batch > batch_mgr > vb_batch_mgr_get_output_index_list.m

vb_batch_mgr_get_output_index_list

PURPOSE ^

get index list for output

SYNOPSIS ^

function [index_list] = vb_batch_mgr_get_output_index_list(obj)

DESCRIPTION ^

 get index list for output
 [USAGE]
    [index_list] = vb_batch_mgr_get_output_index_list(<obj>);
 [IN]
    obj : vb_batch_mgr object
 [OUT]
    index_list : list of ix_main  [Nx1]
                      ix_main = 0: template parameter set
                              > 0: created  parameter set

 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 [index_list] = vb_batch_mgr_get_output_index_list(obj)
0002 % get index list for output
0003 % [USAGE]
0004 %    [index_list] = vb_batch_mgr_get_output_index_list(<obj>);
0005 % [IN]
0006 %    obj : vb_batch_mgr object
0007 % [OUT]
0008 %    index_list : list of ix_main  [Nx1]
0009 %                      ix_main = 0: template parameter set
0010 %                              > 0: created  parameter set
0011 %
0012 % Copyright (C) 2011, ATR All Rights Reserved.
0013 % License : New BSD License(see VBMEG_LICENSE.txt)
0014 
0015 %
0016 % --- Previous check
0017 %
0018 if ~exist('obj', 'var')
0019     error('obj is a required parameter.');
0020 end
0021 
0022 %
0023 % --- Main Procedure
0024 %
0025 index_list = obj.ix_output;

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