概率组合

发布于 2024-12-09 06:46:43 字数 167 浏览 0 评论 0原文

我在 Matlab 中编写代码时遇到了一个问题,该代码计算取自长度为 m 的向量的 n 个数字的所有可能组合的乘积之和。这类似于您将 n 个不同的球从装有 m 个球的袋子中拖出的任务(顺序无关紧要)。

例子: m = 5, n = 3 那么我需要计算 10 个被加数的总和,

谢谢您的时间

I faced a problem while writing a code in Matlab that calculates sum of products of all possible combinations of n numbers taken from a vector with length m. It is similar to the task that you will drag exactly n different balls out of the bag with m balls (order doesn't matter).

example:
m = 5, n = 3 then i need to calculate sum of 10 summands

thanks for your time

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

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

发布评论

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

评论(1

情痴 2024-12-16 06:46:43

您应该使用nchoosek

m=5;
n=3;
s=sum(nchoosek(1:m,n), 2);

You should use nchoosek.

m=5;
n=3;
s=sum(nchoosek(1:m,n), 2);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文