How many times does each combination of numbers appear?

2 次查看(过去 30 天)
Let's say I ran randi(1-40) to produce 5 columns and 100 rows Would I be able to get it to tell me how many times, 1 and 2, for example, come up in the same row. Then if not how may times another combination would come up like 3 and 4 for example? Thanks everyone for any help
  2 个评论
Guillaume
Guillaume 2019-10-21
randi is just a function to generate random numbers. The only thing you get out of it is the random numbers. But yes, you can easily write code to get the histogram of the random numbers generated.
Jake Mcgee
Jake Mcgee 2019-10-21
please can you show me an example, i am relativly new to matlab but if you wrote a wuick small example im sure i could figure it out.
Thank you so much for your time

请先登录,再进行评论。

采纳的回答

per isakson
per isakson 2019-10-21
编辑:per isakson 2019-10-21
"get it to tell" depends on what the little word "it" refers to. The function randi() cannot tell that.
Try this as a start
%%
M = randi([1,5],100,5);
has_12 = arrayfun( @(jj) all( ismember( [1,2], M(jj,:) ) ), (1:size(M,1)) );
has_34 = arrayfun( @(jj) all( ismember( [3,4], M(jj,:) ) ), (1:size(M,1)) );
has = has_12 & has_34;
>> sum(has)
ans =
10
>>
In this case, ten out of one hundred rows has 1,2,3 and 4,

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by