9 lines
256 B
Matlab
9 lines
256 B
Matlab
function i = hndl(x)
|
|
% HNDL Get the integer used to access the kernel object.
|
|
% i = hndl(x)
|
|
% Integer used to access kernel objects. Deprecated in favor of
|
|
% :mat:func:`xml_hndl`.
|
|
%
|
|
|
|
warning('This function is deprecated in favor of xml_hndl.m')
|
|
i = x.id;
|