How to generate pair of numbers from sequence ?

4 次查看(过去 30 天)
I have a sequence of 100 numbers and I want to generate a pair of these numbers.
for example : 1 2
3 4
5 6
.
.
.
99 100
a=randperm(100)
k=a(1:2:end)
k1=a(2:2:end)

采纳的回答

Geoff Hayes
Geoff Hayes 2018-11-28
kitty - you could try using reshape to create a 50x2 matrix of pairs
a = reshape(randperm(100), [50 2])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by