📄 findcstr.m
字号:
function ind = findcstr(cstr,str)
%FINDCSTR Finds occurrences of string in cell array of strings.
% IND = FINDCSTR(CSTR,STR) finds the indices of the cell array of strings
% CSTR where CSTR{IND(I)} == STR, for I from 1 to length(IND).
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 1.8 $
if isempty(cstr)
ind = [];
return
end
for i=prod(size(cstr)):-1:1
ind(i) = strcmp(cstr{i},str);
end
ind = find(ind);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -