counter odd numbers in 'randi'?
조회 수: 3 (최근 30일)
이전 댓글 표시
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?
댓글 수: 0
채택된 답변
추가 답변 (1개)
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
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!