TP-traitement-audio-visuel/TP11/recherche_simplifiee.m
2023-06-22 20:47:16 +02:00

20 lines
381 B
Matlab

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