x = 10*rand(1,1e6);
n=100;
z = ((sum(x(1:n))-n*5)/std(x)*sqrt(n))*ones(1,1e6);
figure;
cdfplot(z)
因此,对于向量“z”,当“x”被定义为 0 到 10 之间的数字集时,我想要每个不同数量的 10,000 个样本。但是,如果我实现我的代码,我只能为“z”获得 10,000 个相同的样本”。如何创建 10,000 个不同的样本?
x = 10*rand(1,1e6);
n=100;
z = ((sum(x(1:n))-n*5)/std(x)*sqrt(n))*ones(1,1e6);
figure;
cdfplot(z)
因此,对于向量“z”,当“x”被定义为 0 到 10 之间的数字集时,我想要每个不同数量的 10,000 个样本。但是,如果我实现我的代码,我只能为“z”获得 10,000 个相同的样本”。如何创建 10,000 个不同的样本?