How to make a matrix only with 2 types of numbers randomly

조회 수: 3 (최근 30일)
André Pacheco
André Pacheco 2012년 12월 18일
Hello,
It may sound a silly question but i cannot think in the desired solution. I need to make a matriz 1:24 only with values that might be 5 or 10? How can i make it randomly?
Example of the desired solution: [10 5 10 5 5 5 10 10 5 10 10 10 10 10 10 5 5 5 5 5 10 5 10 10]

채택된 답변

Wayne King
Wayne King 2012년 12월 18일
편집: Wayne King 2012년 12월 18일
x = rand(24,1);
y = zeros(size(x));
y(x<0.5) = 10;
y(x>0.5) = 5;
The above gives you 10's and 5's occurring with equal probability.
  댓글 수: 1
Jan
Jan 2012년 12월 18일
편집: Jan 2012년 12월 18일
Faster and avoid the (rare) bug when x==0.5:
x = rand(24,1);
y = repmat(5, size(x));
y(x<0.5) = 10;

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

추가 답변 (1개)

Image Analyst
Image Analyst 2012년 12월 18일
Here's another way:
a = 5 * (randi(2, 1, 24)-1) + 5
  댓글 수: 3
André Pacheco
André Pacheco 2012년 12월 18일
편집: André Pacheco 2012년 12월 18일
Thanks it worked ;) How about if i wanted to have numbers 3 types of numbers? -100, 0 and 100?
Oh nvm, i picked up in ur solution and adapt it to my situation. so it would come: a = (randi(3, 1, 24)-2)*100
Thanks a lot ;)
Image Analyst
Image Analyst 2012년 12월 18일
If you have the Image Processing Toolbox you can use the new imquantize() function.

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

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by