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 个评论

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"

请先登录,再进行评论。

 采纳的回答

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

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Startup and Shutdown 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by