Dynamic-Calibration/utils/YALMIP-master/extras/findhash.m

8 lines
124 B
Mathematica
Raw Permalink Normal View History

2019-12-18 11:25:45 +00:00
function pos = findhash(T,t,dummy)
if isempty(T)
pos = []; % Random warnings on 6.1
else
pos = find(T==t);
end