Term frequency for strings with a given vector
이전 댓글 표시
Hello, I am interested in finding the occurrence of terms with a unique vector already given. Suppose I have the vector
A = {'DI','FI','IM','MI'}
and then another vector B
B = {'MI','IM','MI'}
B is a bi-gram of the name MIMI. I then want to find the occurrence of the terms in B given A, so this would return a vector C
C = [0,0,1,2]
How would I do this in Matlab? Efficiency is also important because I will have to do this for many names. At first I was just using ismember but that was because I didn't have repeating sub-sequences of strings. Thank you in advance!
답변 (1개)
Azzi Abdelmalek
2013년 6월 8일
A = {'DI','FI','IM','MI'}
B = {'MI','IM','MI'}
cellfun(@(x) sum(ismember(B,x)),A)
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!