필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
oshomah kanoba
oshomah kanoba 2015년 3월 1일
답변: Mischa Kim 2015년 3월 1일
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

채택된 답변

Mischa Kim
Mischa Kim 2015년 3월 1일
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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Verify Generated Code and Deployed Code Artifacts에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by