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.
<100 x 100 double>があり、列100の(1:100,100)または行1から100をコピーしたいとします。次に、新しい変数xを作成し、それをn回伝播しますか?
ありがとうございました。
「伝播する」とはどういう意味かわかりませんが、おそらくこれがあなたが求めているものですか?
x = repmat(arr(:,end), n, 1);
(arr元の配列はどこにありますか。)
arr