I would like some help with coverting a matrix that is generated randomly to a binary matrix

1 次查看(过去 30 天)
This is a distance matrix which generates random number for every iteration. Is it possible to generate a binary matrix which has ones in place of the lowest 2 values in each row and zeros everywhere else? Can i please get some help with that?

采纳的回答

Chunru
Chunru 2022-8-22
d = rand(4,4) % random data
d = 4×4
0.3227 0.2997 0.6497 0.7723 0.2227 0.7284 0.6703 0.8356 0.3157 0.4773 0.7145 0.0510 0.4854 0.4051 0.6248 0.5357
y = zeros(size(d));
for i=1:size(d, 1)
[~, idx] = sort(d(i, :)); % sort in asencing order
y(i, idx(1:2)) = 1;
end
y
y = 4×4
1 1 0 0 1 0 1 0 1 0 0 1 1 1 0 0

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Random Number Generation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by