Parallel and distributed systems exercise 2: ditributed all-kNN algorithm.
Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- function [M, I] = maxIdx(Vec)
- %maxIdx Calculate the max,index pair of each element of a vector
- %
- n = length(Vec);
- I = 0;
- M = -Inf;
- for j = 1:n
- if M < Vec(j)
- M = Vec(j);
- I = j;
- end
- end
- end
|