MATLAB: How do you generate random numbers (integers) from zero to five

beginner

Hello , I have already read from the HELP section in matlab and I am still unable to find a solution. Can someone please help !
Generate random integers that are Non -repeating

Best Answer

This will generate a vector of non-repeating random integers from 0 to 5:
R = randperm(6)-1
producing (in this instance):
R =
5 2 3 1 0 4