matlab随机生成某范围内的一组整数且和为定值?
发布网友
发布时间:2022-05-29 15:32
我来回答
共2个回答
热心网友
时间:2023-10-22 23:47
clear
S=54; %数组总和
Amin=0; %数据最小值
Amax=5; %数据最大值
SumA=S-1;
n=0;
while SumA<S
n=n+1;
temp=Amax+1;
while temp>Amax
temp=Amin+fix((Amax+1-Amin)*rand(1));
end
STemp=SumA+temp;
if STemp<=S
A(n)=temp;
SumA=sum(A);
else
n=n-1;
end
end
%%%%%%%%%%%%%%%%%%%
% 下面的程序是保证数据随机性追加的,以弥补上面程序数据结尾一定不为0的缺陷
while STemp==S
n=n+1;
temp=Amax+1;
while temp>Amax
temp=Amin+fix((Amax+1-Amin)*rand(1));
end
STemp=S+temp;
if STemp==S
A(n)=temp;
end
end
A %需要的数组
sum(A) %数组总和
下面是输出结果(每次执行都会有不同的输出):
A = 1 1 4 3 4 4 2 1 2 1 3 5 3 3 0 3 2 1 2 3 4 1 0 1 0
A= 1 1 0 3 2 2 3 4 0 0 1 5 3 4 2 2 1 1 1 5 0 0 2 5 1 2 2 0 0 1
热心网友
时间:2023-10-22 23:47
我知道如何生成每个元素值均在[0,x]范围内且总和为x的整数数组,但是你这个还没完全有思路追问你是只无法随机生成吗?
追答是随机的。只是要求范围最大值,和总和一样