Number of times an element appears
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
If i have a vector prize = [3;5;1;2;1] and the year =[2007;2018;2011;2011;2018] How do I find the number of times each year appears in 'year'? Without using accumarray function
0 Commenti
Risposte (1)
Guillaume
il 11 Mag 2018
I don't see what prize has to do with your question. The number of times each of something appears in a set is called the histogram, which you can obtain easily with histcounts or the deprecated histc.
If you are banned from using any of these functions because this is homework, then you'll have to use a for loop. It's really not complicated to figure out what needs to go in the loop.
0 Commenti
Vedere anche
Categorie
Scopri di più su Data Distribution Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!