17 lines
432 B
Matlab
17 lines
432 B
Matlab
function n = domainIndex(s, name)
|
|
% DOMAININDEX Get the index of a domain in a stack given its name.
|
|
% n = domainIndex(s, name)
|
|
% :param s:
|
|
% Instance of class :mat:func:`Stack`
|
|
% :param name:
|
|
% If double, the value is returned. Otherwise,
|
|
% the name is looked up and its index is returned.
|
|
% :return:
|
|
% Index of domain
|
|
%
|
|
|
|
if isa(name, 'double')
|
|
n = name;
|
|
else
|
|
n = stack_methods(s.stack_id, 109, name);
|
|
end
|