why is my results coiming out as a single 0 while using matlab

1 vue (au cours des 30 derniers jours)
oshomah kanoba
oshomah kanoba le 1 Mar 2015
R = rand (10,1)% generate a sample in Unif(0,1) P = 0.5 N = 10 if R < P fprintf = 1 else fprintf = 0 end

Réponse acceptée

Mischa Kim
Mischa Kim le 1 Mar 2015
R is a vector, P is a scalar. Do you mean to do
R = rand (10,1)% generate a sample in Unif(0,1)
P = 0.5; N = 10;
for ii = 1:numel(R)
if R(ii) < P
fprintf = 1
else
fprintf = 0
end
end

Plus de réponses (0)

Catégories

En savoir plus sur Verify Generated Code and Deployed Code Artifacts dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by