how to fine repeated value?
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
in a column if there is 100 vlaues some are repeated and nonrepeated values how to fine repeated values, how many times it is repeated .
how to get this is there any matlab instruction r code?
0 件のコメント
回答 (1 件)
Rik
2020 年 3 月 21 日
0 投票
If you just wanted to know the repeated values you could use unique to filter each first occurrence, which would leave the repeated values.
As you want to know how often every value occurs the most logical step would be to histcounts. Use max and min to determine the bin edges.
5 件のコメント
rajesh kumar
2020 年 3 月 21 日
Rik
2020 年 3 月 21 日
Have you tried using the histcounts function?
Walter Roberson
2020 年 3 月 21 日
histcounts and look for entries whose count is more than 1.
rajesh kumar
2020 年 3 月 21 日
Walter Roberson
2020 年 3 月 21 日
This does not appear to relate to the original question: the probability of a repeated value created by randn() is very low -- you would have to generate more than 1e8 samples for the probability of even one duplicate to reach 50%.
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!