MATLAB: Randomise array with non-integer values

arrayrandom

Hi,
I want to randomise the elements in a 1-D array. I can't use randperm as the elements are non-integer values. Any ideas?
Thanks,
Richard

Best Answer

Never mind, I solved the problem this way:
X=0.05:0.0025:0.15;
randomiser = randperm(length(layer));
X=X(randomiser);