I need a function or boucle

Hello everyone,
I need a function or boucle to do
ex:
X1 X2 X3 X4 X5 X6 X7 X8 X9 X10
X2 X3 X4 X5 X6 X7 X8 X9 X10 X1
X1 X3 X4 X5 X6 X7 X8 X9 X10 X2
X1 X2 X4 X5 X6 X7 X8 X9 X10 X3
....
.
.
thnks

3 Comments

This doesn't look like a pattern for which we can predict what the next value should be.
Please clarify.
I had to look it up, so I'm assuming others (not in the knitting world) don't know what boucle is, so here's the definition:
Definition of bouclé
1 : an uneven yarn of three plies one of which forms loops at intervals
2 : a fabric of bouclé yarn
It can also mean "loop"

Sign in to comment.

 Accepted Answer

X = 1:10;
M = [];
idx = 1:numel(X);
for ii = idx([end 1:end-1])
M = [M; X(idx ~= ii) X(ii)];
end
disp(M);
1 2 3 4 5 6 7 8 9 10 2 3 4 5 6 7 8 9 10 1 1 3 4 5 6 7 8 9 10 2 1 2 4 5 6 7 8 9 10 3 1 2 3 5 6 7 8 9 10 4 1 2 3 4 6 7 8 9 10 5 1 2 3 4 5 7 8 9 10 6 1 2 3 4 5 6 8 9 10 7 1 2 3 4 5 6 7 9 10 8 1 2 3 4 5 6 7 8 10 9

More Answers (0)

Categories

Asked:

on 5 Apr 2022

Commented:

on 5 Apr 2022

Community Treasure Hunt

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

Start Hunting!