/entrega3/mezclar.m
http://github.com/melisabok/RedesNeuronales · Objective C · 5 lines · 4 code · 1 blank · 0 comment · 0 complexity · d57d0a58b0a3d079dba7ee8f749833bc MD5 · raw file
- function[M] = mezclar(P)
- [CantFilas, CantCols] = size(P);
- indices = randperm(CantFilas);
- M = P(indices,:);