AUTH's THMMY "Parallel and distributed systems" course assignments.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

11 行
447 B

  1. function [N, D] = mergeReducedResultsWithMink(N_sub, D_sub, C_sub, k, ~)
  2. % Merge reduced results for one subset of queries using mink
  3. numQueries = size(N_sub, 1); % Number of queries
  4. % Find the k smallest distances and their indices using mink
  5. [D, idx] = mink(D_sub, k, 2);
  6. % Select the corresponding neighbors based on the indices
  7. N = N_sub(sub2ind(size(N_sub), ...
  8. repmat((1:numQueries)', 1, k), idx));
  9. end