概率组合
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该使用
nchoosek
。You should use
nchoosek
.