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!