Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如何创建一个数字从 1 到 10 的数组而不重复。因为我将使用它来重新排列矩阵的行。例如 1 到 10,我希望我的输出为:4 1 3 8 2 5 6 7 9 10 但我不想重复数字。我怎样才能做到这一点?
我想你需要的是-
randperm(10)
你也可以使用 A = magic(4); B = A(A<=10); B 会给你所需的矩阵。