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> 并且我想复制 (1:100,100) 或第 100 列上的第 1 到 100 行。然后我想创建一个新变量 x 并将其传播 n 次?
谢谢你。
不确定您所说的“传播”是什么意思,但也许这就是您所追求的?
x = repmat(arr(:,end), n, 1);
(arr原始数组在哪里。)
arr