/entrega3/mezclar.m
Objective C | 5 lines | 4 code | 1 blank | 0 comment | 0 complexity | d57d0a58b0a3d079dba7ee8f749833bc MD5 | raw file
1function[M] = mezclar(P) 2 3[CantFilas, CantCols] = size(P); 4indices = randperm(CantFilas); 5M = P(indices,:);