Matlab中对逻辑矩阵表达式的所有条目求和的表达式?

发布于 2024-12-07 10:41:37 字数 410 浏览 0 评论 0原文

将矩阵中的所有元素相加,您通常会这样做

A = sum ( B(:) );

,这很好而且很短。然而,假设我们有一个像这样的逻辑表达式

B = B == 6 

,并且我们想要对所有条目的元素求和,那么最聪明的方法似乎是这样做

A = sum ( sum ( B == 6 ) )

,或者

B = B == 6;
A = sum( B(:) );

两者都有点丑陋。所以我想知道有没有更好的表达方式?

A = sum ( (B == 6)(:) );

会很好,但不起作用。

To sum all the elements in a matrix you usually do

A = sum ( B(:) );

which is nice and short. However assume that we have a logical expression like this

B = B == 6 

and we want to sum the elements of all the entries, then smartest way seems to be to do

A = sum ( sum ( B == 6 ) )

or

B = B == 6;
A = sum( B(:) );

Both are kind of ugly. So I was wondering is there a nicer expression?

A = sum ( (B == 6)(:) );

Would be nice but doesn't work.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

随心而道 2024-12-14 10:41:37

那么这个简单的解决方案有什么令人讨厌的......

A = sum(B(:) == 6);

So what is so nasty about the simple solution...

A = sum(B(:) == 6);
屌丝范 2024-12-14 10:41:37

并不是我建议这样做,而是如图所示 以前,您实际上可以执行以下操作:

%# A = sum ( (B == 6)(:) )
A = sum( subsref(B == 6, struct('type','()', 'subs',{{':'}})) )

Not that I recommend this, but as was shown previously, you can actually do something like:

%# A = sum ( (B == 6)(:) )
A = sum( subsref(B == 6, struct('type','()', 'subs',{{':'}})) )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文