www.gusucode.com > mbcview 工具箱matlab源码程序 > mbcview/@cgtradeoffnode/convertTableToListIndex.m

    function idx = convertTableToListIndex(obj, varargin)
%CONVERTTABLETOLISTINDEX Convert table index to correxponding list index
%
%  IDX = CONVERTTABLETOLISTINDEX(OBJ, ROW, COL, ...) converts the table
%  cell indices (ROW, COL, ...) into the corresponding index in the saved
%  inputs list, IDX.  If the table cell is not found in the saved inputs
%  list, an index of 0 is returned.

%  Copyright 2000-2004 The MathWorks, Inc. and Ford Global Technologies, Inc.


idx = getIndexFromTable(obj.DataKeyTable, varargin{:});