TP-traitement-audio-visuel/TP11/recherche_simplifiee.m

20 lines
381 B
Mathematica
Raw Permalink Normal View History

2023-06-22 18:47:16 +00:00
function resultats = recherche_simplifiee(identifiants, bdd)
resultats = [];
for i = 1:length(identifiants)
if isKey(bdd, identifiants(i))
entry = bdd(identifiants(i));
if length(entry) == 0
continue;
end
resultats = [ resultats ; entry(:, 2) ];
end
end
end