lognrnd(2.3,0.8,[5000,1]), I do not want the value which samller than 1.5? How can I do?
이전 댓글 표시
I want to do something before random values are produced rather than to eliminate them after being produced?
Thank you very much!
답변 (1개)
ankit agrawal
2015년 5월 1일
You can do something like this
a=lognrnd(2.3,0.8,[5000,1]);
index=1;
for i=1:length(a);
if a(i)>=1.5;
b(index)=a(i);
index=index+1;
end;
end
Where b has no value less than 1.5
카테고리
도움말 센터 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!