如何计算矩阵中元素子集的总和?
我想计算矩阵中可被 2 整除的元素的总和。我该怎么做?如何以坐标形式输出答案?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想计算矩阵中可被 2 整除的元素的总和。我该怎么做?如何以坐标形式输出答案?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
如果您有一个矩阵
M
,您可以找到一个 使用 (即掩码) rel="nofollow noreferrer">MOD 函数,无需循环即可对整个矩阵进行操作。对于矩阵中的偶数项,除以 2 后余数将为 0:您可以使用函数 FIND:
通过使用上面的逻辑掩码索引
M
来提取偶数元素的总和,即可获得偶数元素的总和甚至条目并使用 SUM 函数将它们相加:这是一个使用函数 MAGIC< 创建矩阵
M
的示例/a>:If you have a matrix
M
, you can find a logical index (i.e. mask) for where the even elements are by using the MOD function, which can operate on an entire matrix without needing loops. For entries in the matrix that are even the remainder will be 0 after dividing by 2:You can get the row and column indices of these even entries using the function FIND:
And you can get the sum of the even elements by indexing
M
with the logical mask from above to extract the even entries and using the SUM function to add them up:Here's an example with a matrix
M
created using the function MAGIC:这是仅包含偶数值的矩阵
M
:(mod(M,2) == 0).*M
您可以使用
sum(M )
或sum(sum(M))
(不确定“坐标形式”是什么意思)。This is the matrix
M
with only its even values:(mod(M,2) == 0).*M
You can sum it with
sum(M)
orsum(sum(M))
(not sure what "co-ordinate form" means).一些伪代码。几乎循环遍历每一行的每一列。
但不确定坐标形式是什么意思。
Some pseudo-code. Pretty much loop through each column for each of the rows.
Not sure what you mean by Coordinate form though.