Maple:有一个长度=L的数组,如何创建具有所有可能的排列而不重复的数组?
所以我们有一个数组 x:=[a,b,c]。其所有可能的无重复排列为 [a,c,b], [b,c,a], [b,a,c], [c,a,b], [c,b,a]
。如何创建一些向量来保存初始 x 及其所有排列而不在枫树中重复?
So we have an array x:=[a,b,c]. all its possible permutation with out repetitions are [a,c,b], [b,c,a], [b,a,c], [c,a,b], [c,b,a]
. How to create some vector that will hold initial x and all its permutation with out repetitions in maple?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试组合库。
combinat - permute,maplesoft.com
Try the combinat lib.
combinat - permute, maplesoft.com