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 件のコメント

Les Beckham
Les Beckham 2022 年 4 月 5 日
This doesn't look like a pattern for which we can predict what the next value should be.
Please clarify.
Image Analyst
Image Analyst 2022 年 4 月 5 日
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
Les Beckham
Les Beckham 2022 年 4 月 5 日
It can also mean "loop"

サインインしてコメントする。

 採用された回答

Voss
Voss 2022 年 4 月 5 日

1 投票

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 ExchangeStartup and Shutdown についてさらに検索

質問済み:

2022 年 4 月 5 日

コメント済み:

2022 年 4 月 5 日

Community Treasure Hunt

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

Start Hunting!

Translated by