필터 지우기
필터 지우기

How i can save a random value from a matrix in a variable,exluding values lower than 1?

조회 수: 3 (최근 30일)
I have a matrix 100X100 and i want a command to insert in variable pnode a random value of this matrix but,i want the value to be bigger than 1.For example if i have the matrix A=[4 5 2 1; 8 3 1 0] my variable pnode,can take on of the values 4,5,2,8,3 randomly

채택된 답변

Image Analyst
Image Analyst 2015년 4월 22일
Try this:
% Generate sample data
A=[4 5 2 1; 8 3 1 0]
% Get column vector of all the elements where A > 0
A_No_Zeros = A(A > 0)
% Get a random index.
randomIndex = randi(length(A_No_Zeros), 1);
% Assign pnode the random value from A_No_Zeros.
pnode = A(randomIndex)
  댓글 수: 4
Giannakis Stoukas
Giannakis Stoukas 2015년 4월 22일
Well i followed the commands you wrote,but after a number of repeats my value takes the number one.Although at the results it writes that the minimum value of A_No_Zeros is value 2.I really dont get why this happens.
Image Analyst
Image Analyst 2015년 4월 22일
Because once you ignore 0's and 1's in [4 5 2 1; 8 3 1 0] you are left with [4 5 2 8 3] and the minimum of that is 2. Not sure why you're surprised. However my code did not compute the minimum so that must be code you added.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by