如何在 MATLAB 中将矩阵元素除以列总和?
有没有一种简单的方法可以将每个矩阵元素除以列和?例如:
input:
1 4
4 10
output:
1/5 4/14
4/5 10/14
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有一种简单的方法可以将每个矩阵元素除以列和?例如:
input:
1 4
4 10
output:
1/5 4/14
4/5 10/14
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
以下是执行此操作的不同方法的列表...
...使用
bsxfun
:...使用
repmat
:...使用外部产品(按照建议通过Amro):
...并使用 for 循环(如 mtrw):
<前><代码>B = A;
列总和 = sum(B);
对于 i = 1:numel(columnSums)
B(:,i) = B(:,i)./columnSums(i);
结尾
更新:
从 MATLAB R2016b 及更高版本开始,大多数内置二进制函数(列表可以在 此处)支持隐式扩展,这意味着它们具有
bsxfun
。因此,在最新的 MATLAB 版本中,您所要做的就是:Here's a list of the different ways to do this ...
... using
bsxfun
:... using
repmat
:... using an outer product (as suggested by Amro):
... and using a for loop (as suggested by mtrw):
Update:
As of MATLAB R2016b and later, most built-in binary functions (list can be found here) support implicit expansion, meaning they have the behavior of
bsxfun
by default. So, in the newest MATLAB versions, all you have to do is:无法抗拒尝试列表理解。如果这个矩阵以行主列表的形式表示,请尝试以下操作:
是的,我知道这不是超级高效,因为我们每行计算一次列总和。将其保存在名为 colsums 的变量中,如下所示:
请注意,zip(*A) 给出转置(A)。
Couldn't resist trying a list comprehension. If this matrix was represented in a row-major list of lists, try this:
Yes, I know that this is not super-efficient, as we compute the column sums once per row. Saving this in a variable named colsums looks like:
Note that zip(*A) gives transpose(A).