counter odd numbers in 'randi'?

조회 수: 3 (최근 30일)
tomer kapuri
tomer kapuri 2018년 12월 2일
댓글: tomer kapuri 2018년 12월 3일
counter of odd numbers in 'randi'?
this is program:
a=randi([0 27],1,50);
b=zeros(1,numel(a)*3+numel(a));
b(4:4:end)=a(:)
what is need write after that?

채택된 답변

Image Analyst
Image Analyst 2018년 12월 2일
Try this:
a=randi([0 27],1,50)
numberOfOddNumbers = sum(rem(a, 2))

추가 답변 (1개)

madhan ravi
madhan ravi 2018년 12월 2일
편집: madhan ravi 2018년 12월 2일
a=randi([0 27],1,50);
b=zeros(1,numel(a)*3+numel(a));
b(4:4:end)=a;
b(rem(b,2)~=0 & ~isprime(b))
  댓글 수: 2
tomer kapuri
tomer kapuri 2018년 12월 2일
is not working - its not counter :(
madhan ravi
madhan ravi 2018년 12월 2일
give an example to understand

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Simulink에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by