2012-10-03 51 views

回答

3

上述功能之一是strmatch

index = strmatch('grerol',A,'exact'); 

它返回索引的陣列。它現在已經過時,並Mathworks公司建議使用strcmp代替

logicalIndexing = strcmp('grerol',A); 

另一種選擇是ismember

[bIsMember,index]=ismember('grerol',A); 

另一種選擇是strfind: 指數= strfind(A,'grerol 「);


最後但並非最不重要的,

booleanIndexes = cellfun(@(x)(isequal(x,'grerol')),A); 
+1

爲了完整起見,您還可以將'strfind'添加到列表中。 (無論如何+1)。 –

+0

@ H.Muster,完成。謝謝! –