how to find total combination of 5 elements in composition?

1 回表示 (過去 30 日間)
Majid Vaghari
Majid Vaghari 2022 年 1 月 20 日
コメント済み: Majid Vaghari 2022 年 1 月 20 日
I’m trying to find to total combination of numbers for a quinary alloys that contains 5 elements. The composition of each element can change between 1at% to 96at%.
1≤X1≤96
1≤X2≤96
1≤X3≤96
1≤X4≤96
1≤X5≤96
X1+ X2+X3+X4+ X5=100
For example one easy solution is:1-1-1-1-96
As you know the sum of composition should be 100%.
How can I find the total combination with matlab code?
  2 件のコメント
Majid Vaghari
Majid Vaghari 2022 年 1 月 20 日
the step of change is 1%
Rik
Rik 2022 年 1 月 20 日
Do you need to generate every combination, or do you just want the total count?

サインインしてコメントする。

採用された回答

Matt J
Matt J 2022 年 1 月 20 日
編集済み: Matt J 2022 年 1 月 20 日
Here's an old routine from John D'Errico. I can't find it on the File Exchange anymore, for some reason.
combinations=diophantine([1,1,1,1,1],100,1:96);
  1 件のコメント
Majid Vaghari
Majid Vaghari 2022 年 1 月 20 日
Thanks Matt J, That was fantastic!
Regards,
Majid

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

タグ

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by