i want to know how many times a value repeated in excel
Mostra commenti meno recenti
i have an excel file that has only numbers on it, and i want to know how many times a value repeated Example: 1 2 3 4 5 5 5 6
here 5 has been repeated 3 times, how can i find that by matlab?
Risposte (2)
Thomas
il 6 Nov 2012
If you know which value you want to find the count of
a=[1 2 3 4 5 5 5 6]; % input values
numberofFives=sum(a==5)
7 Commenti
Mohammed
il 6 Nov 2012
Thomas
il 6 Nov 2012
then use
[count , number]=hist(a,unique(a));
[number' count']
Mohammed
il 6 Nov 2012
Thomas
il 6 Nov 2012
then read on XLSREAD, import data into matlab and use
[count , number]=hist(a,unique(a));
morethan1=find(count>1);
[number(morethan1)' count(morethan1)']
Mohammed
il 6 Nov 2012
Thomas
il 6 Nov 2012
a=[1 2 3 4 5 5 5 6]; % a was your input series of numbers
Mohammed
il 8 Nov 2012
Matt J
il 6 Nov 2012
0 voti
Read the data in using XLSREAD. Then use HISTC.
Categorie
Scopri di più su Data Import from MATLAB in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!