How to output as a vector
古いコメントを表示
ive got a coin toss simulation game where score is kept.
function = coin_toss(s(0),N)
% coin toss simulation
% a coin is tossed n times, at each point a score is given +1 for heads
% and -1 for tails.
N=input(10)
for k=1:N
rand_number=rand;
if random_number<0.5
random_number(k,1)=-1;
else
random_number(k,1)=1;
for i=1:N,
s(0)=-1
s(N)= s(N-1)+random_number
end
end
end
I basicly want to have an output of the scores after each flip divided by the flip number in a vector e.g
[(-1/1),(s(1)/2),(s(2),3)........ (s(N)/(N+1)] [-1,
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で MuPAD についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!