how can i select a random number from a column of a matrix? and then how to find the location of that number?
9 次查看(过去 30 天)
显示 更早的评论
I have a matrix (4x3) and I need to select a value from second column and find the corresponding row number.
For example, A = [11 24 31; 18 19 27; 16 21 34; 23 37 33 28]
Could someone help me?
0 个评论
回答(1 个)
Iddo Weiner
2018-4-1
If you use a random number to index the row you want to extract, you will already have what you need:
A = randi(10,[4,3]);
rand_row = randi(size(A,1)) %get random row
rand_number = A(rand_row,2) %get your rand number form the 2nd column
5 个评论
Guillaume
2018-4-3
Choosing a random number from the 2nd column and getting the corresponding row is exactly equivalent to choosing a random row and getting the corresponding number in the 2nd column. Iddo showed you how to do the latter, so again you'll have to explain why it didn't work for you.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!