avoiding same data in looping

1 次查看(过去 30 天)
Hii... I am a very new MATLAB user, I want to ask how to avoid same data when I do random looping, Example, I have A = [ x y z], I want to do looping, but every value does not have same value, ex: if I have data from 1 to 3, if x=1, y and z should not be 1 (should be 2 or 3). How to make the m-file?
Thank You

采纳的回答

Fangjun Jiang
Fangjun Jiang 2011-11-26
For A=1:3
fprintf('The value of A is: %d\n',A);
end
  3 个评论
Fangjun Jiang
Fangjun Jiang 2011-11-26
For that, you can use randperm(N), e.g. A=randperm(3)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Performance and Memory 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by