鱿鱼游戏玻璃桥MATLAB脚本

954次阅读
没有评论

共计 668 个字符,预计需要花费 2 分钟才能阅读完成。

网上有 python 版的,给师妹写了个精简 matlab 版的。
直接输出生存率,可修改加入遗忘概率曲线。

%setting
num_of_gamers=uint8(16);
num_of_glasses=uint8(18);
num_of_rounds=uint32(1000000);

%count
total=uint32(zeros(num_of_gamers,1));

for rounds=1:num_of_rounds
%initialization
bridge=logical(round(rand(num_of_glasses,1)));
step_continue=1;
%game start
for gamer=1:num_of_gamers
for step=step_continue:num_of_glasses
if step_continue<=num_of_glasses
step_continue=step_continue 1;
elseif step_continue==num_of_glasses 1
break
end
if logical(round(rand()))~=bridge(step) %choice
break
end
end
if step_continue==num_of_glasses 1
total(gamer)=total(gamer) 1;
end
end
end
%save("total.mat","total");
bar(double(total)/double(num_of_rounds)*100);
鱿鱼游戏玻璃桥 MATLAB 脚本
正文完
 0
R3默秒全
版权声明:本站原创文章,由 R3默秒全 2021-11-06发表,共计668字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)