can anyone help me to complete this code
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
this code is for generating a text watermark.the code mentioned below reads the text file, and finds the frequently occurring word in it which i named kw.now what i want to do is to make a function that counts the no of characters in a preceding and next word to the keyword(kw) each time kw occurs in the text file. can i get any help about this... fid = fopen('hello.txt');
text = textscan(fid,'%s');
fclose(fid);
text = lower(text{:});
Nwords = numel(text);
[uniqueWords, numericIDs, wordOrder] = unique(text);
numel(uniqueWords);
counts = histc(wordOrder,1:numel(uniqueWords));
[frequency,order] = sort(counts,'descend');
freqcell = num2cell(frequency);
sortedWords = uniqueWords(order);
display([sortedWords(1:3),freqcell(1:3)]);
kw=sortedWords(1);
kwcount=freqcell(1);
disp(kw);
0 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Text Data Preparation 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!