Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
行列を想像してください:
a = 4 2 8 9
n回繰り返す必要があります。の場合n = 3、結果は次のとおりです。
n = 3
a = 4 4 4 2 2 2 8 8 8 9 9 9
あなたが試すことができます:
n = 3; reshape(repmat(a', n, 1), numel(a)*n, 1)
kron 関数、newMatrix = kron(a,ones(1,4)) を使用してみてください。