/entrega3/mezclar.m

http://github.com/melisabok/RedesNeuronales · Objective C · 5 lines · 4 code · 1 blank · 0 comment · 0 complexity · d57d0a58b0a3d079dba7ee8f749833bc MD5 · raw file

  1. function[M] = mezclar(P)
  2. [CantFilas, CantCols] = size(P);
  3. indices = randperm(CantFilas);
  4. M = P(indices,:);