8 lines
124 B
Mathematica
8 lines
124 B
Mathematica
|
|
function pos = findhash(T,t,dummy)
|
||
|
|
|
||
|
|
if isempty(T)
|
||
|
|
pos = []; % Random warnings on 6.1
|
||
|
|
else
|
||
|
|
pos = find(T==t);
|
||
|
|
end
|
||
|
|
|