Creating Random Sparse Matrices Using For Loop

2 次查看(过去 30 天)
How would I go about creating a for loop to generate 100 different random sparse matrices? Each matrix would be 100x100 and have a density of 0.01. For example, I want to generate those matrices and then plot their bandwidth values.

采纳的回答

Walter Roberson
Walter Roberson 2021-1-15
N = 100; S = 100;
RM = cell(N,1);
B = zeros(1,N);
for K = 1 : N
RM{K} = sprand(S, S, 0.01);
B(K) = bandwidth(RM{K});
end
histogram(B)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Sparse Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by