Random multiply by negative one
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello, I bootstrapped a 1000 simulation from my data with replacement and now, I would like to randomly multiply it by one or negative one, but I am not sure how to do that.
My initial guess was to do the following: y3=y2*randi([-1,1],22528,1000), but I guess it will generate pseudorandom integers in this range, which includes zero. Any suggestion on how to do this will be highly appreciated.
Thanks
Alma
댓글 수: 0
답변 (3개)
Azzi Abdelmalek
2016년 2월 22일
편집: Azzi Abdelmalek
2016년 2월 22일
out=2*randi([0 1],22528,1000)-1
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Random Number Generation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!