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

22 lines
328 B
Plaintext
Raw Normal View History

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