I want to obtain number of cases(matrix's length) . By applying same sum in any matrix. (on constraints)

2 ビュー (過去 30 日間)
for example,
A is here.
A=[6 7 8 9];
and,
sumA=sum(A)=30;
The element of the matrix that causes the sum to be 30 must be expressed as a value between 4 and 12.
When I calculate directly, the number of cases that can be obtained is 3,4,5,6,7.
In this way, how to create code?

回答 (2 件)

José-Luis
José-Luis 2017 年 9 月 8 日
If what you mean is that you want the sum of a random array of four elements to be thirty with some condition placed on the last of them:
lims = [4,12];
totVal = 30;
lastElement = randi(diff(lims) + 1,1 ) + lims(1) - 1;
valueToSplit = totVal - lastElement;
frac = rand(1,3);
frac = frac ./ sum(frac);
result = [round(frac.*valueToSplit), lastElement]
sum(result)

Andrei Bobrov
Andrei Bobrov 2017 年 9 月 8 日
編集済み: Andrei Bobrov 2017 年 9 月 13 日
z = 4:12;
out = [];
for jj = 1:numel(z)
k = nchoosek(z,jj);
out = [out;num2cell(k(sum(k,2) == 30,:),2)];
end
"number of rows":
numel(out)
  2 件のコメント
Brian Kim
Brian Kim 2017 年 9 月 12 日
編集済み: Andrei Bobrov 2017 年 9 月 13 日
i don't wanna all cases matrices. I want the number of rows I can get
José-Luis
José-Luis 2017 年 9 月 12 日
編集済み: José-Luis 2017 年 9 月 13 日
I don't understand what you mean. Could you explain?

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

カテゴリ

Help Center および File ExchangeEEG/MEG/ECoG についてさらに検索

Community Treasure Hunt

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

Start Hunting!