Could anyone help me how to generate the matrix in the following manner as described below
2 次查看(过去 30 天)
显示 更早的评论
I want to generate a matrix of size
(1500x1)
in which first 100 rows should be having the value of 1, next 200 rows should be having the value of 1 and 2 arranged randomly, next 300 should be having the value of 1,2 and 3 arranged randomly, next 400 rows should be having the value of 1,2,3 and 4 arranged randomly and next 500 rows should be having the value of 1,2,3, 4 and 5 arranged randomly.
Could anyone please help me on this.
0 个评论
采纳的回答
Bruno Luong
2021-8-4
编辑:Bruno Luong
2021-8-4
hi=repelem((1:5)',100*(1:5));
r=ceil(rand(size(hi)).*hi)
0 个评论
更多回答(2 个)
Vignesh Murugavel
2021-8-4
This should do it.
m1 = ones([100,1]);
m2 = randi([1 2],200,1);
m3 = randi([1 3],300,1);
m4 = randi([1 4],400,1);
m5 = randi([1 5],500,1);
Ans = [m1 ; m2;m3;m4;m5];
2 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!