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.
我有一个 mx1xn 数组(当前 m=n=3),我需要从每一列中减去一个存储在 1x1xn 列中的值。
即 n 代表时间,并且从每个时间实例中,我需要从数据中减去一个不同的时间相关常数(1xm 或任何尺寸)。
最好的方法是什么?我的尝试不会奏效:
data(:,2,:) - constants(:,2,:) %constants in this case is 1x1x3, data is 3x1x3
一种尝试是循环它,但我想知道什么是更有效的方法。
使用bsxfun:
bsxfun
bsxfun(@minus, data, constants)