how to plot the data in a cell array
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm writing a program in order to calculate the time of appearance of each word in a txt document(a novel, for about 300,000 words).The result will be stored in a cell array. Besides, I need to plot the curve, the axes should be "time of appearance" and "range of time of appearance".
But I don't know how to plot this curve. I hope there's someone can offer me some help.
0 Kommentare
Antworten (2)
Nathan Crosty
am 26 Jul. 2013
It sounds like you are looking for the cell2mat function. This will convert a cell array to numeric array which you can use to plot.
Azzi Abdelmalek
am 26 Jul. 2013
s={'one','two','one','three','one','four','one','two'}
[a,b,c]=unique(s,'stable')
n_occ=accumarray(c,1)
out=[a' num2cell(n_occ)]
bar(n_occ)
set(gca,'xticklabel',a)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!