标签: matlab vector
[1:5]'
我想出去例如:
[3 5 1 2 4]'
谢谢!
答案 0 :(得分:5)
使用RANDPERM:
shuffledOutput = inputVector(randperm(length(inputVector)));