create a vector without for

6 ビュー (過去 30 日間)
vincent lin
vincent lin 2020 年 1 月 19 日
コメント済み: Stephen23 2020 年 1 月 19 日
The vector structure is like [a b c d e f g h i j]
a=1:10
b=1:10
...
j=1:5
vect=[]
I can use for a =1:10
for b=1:10
...
vect = [vect;a.b...j]
end
end
but it looks not elegant. Is there a better way to generate it?
  8 件のコメント
vincent lin
vincent lin 2020 年 1 月 19 日
Thanks David. My question is a general question and no specific application. I can reduce it to [a b c d] for example.
a=1:10
b=1:10
c=1:3
d=1:5
Total array size is 10*10*3*5. So Yes, I'd like to have possible permutation. I can use for commands but it will need several for. If there're other more compact ways to generate these vectors, that would be good.
Stephen23
Stephen23 2020 年 1 月 19 日
"I'd like to have possible permutation"
Then you should have asked about generating permutations: http://xyproblem.info/

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

採用された回答

Walter Roberson
Walter Roberson 2020 年 1 月 19 日
a=1:10;
b=1:10;
c=1:3;
d=1:5;
[A, B, C, D] = ndgrid(uint8(a), uint8(b), uint8(c), uint8(d)) ;
v = [A(:), B(:), C(:), D(:)] ;

その他の回答 (1 件)

Image Analyst
Image Analyst 2020 年 1 月 19 日
Try
a = 1 : 10
b = 1 : 10
...
j = 1 : 5
outputVector = [a, b, c, d, e, f, g, h, i, j]

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by