strmatch,matlab

strmatch在matlab里怎么用?匹配是什么意思?可以用来查找一个字符串吗?请举例,详细加分哦... strmatch在matlab里怎么用?匹配是什么意思?可以用来查找一个字符串吗?请举例,详细加分哦 展开
 我来答
百度网友3ebf96a
推荐于2018-03-04 · TA获得超过368个赞
知道小有建树答主
回答量:81
采纳率:0%
帮助的人:107万
展开全部
两种用法:
str为字符串,strarray为字符串或是元胞数组
x = strmatch(str, strarray)
x = strmatch(str, strarray, 'exact')
第一种:比较str和strarray,看strarray中是否有str这个字符串,如果有,返回str在strarray中的位置(即数组下标),只要找到str就行,不需要严格相同
第二种区别在于要严格相同。
以下是两个例子:
x = strmatch('max', strvcat('max', 'minimax', 'maximum'))
返回 x= [1;3]

x = strmatch('max', strvcat('max', 'minimax', 'maximum'),'exact')
返回 x= 1
子龙90
2011-12-27 · TA获得超过397个赞
知道答主
回答量:50
采纳率:0%
帮助的人:78.5万
展开全部
Find possible matches for string
语法
x = strmatch('str', STRS)
x = strmatch('str', STRS, 'exact')
描述
x = strmatch('str', STRS) looks through the rows of the character array or cell array of strings STRS to find strings that begin with string str, returning the matching row indices. strmatch is fastest when STRS is a character array.
x = strmatch('str', STRS, 'exact') returns only the indices of the strings in STRS matching str exactly.
例子
The statement
x = strmatch('max', strvcat('max', 'minimax', 'maximum'))
returns x = [1; 3] since rows 1 and 3 begin with 'max'. The statement
x = strmatch('max', strvcat('max', 'minimax', 'maximum'),'exact')
returns x = 1, since only row 1 matches 'max' exactly.
这个是matlab 自带的help里面的,很权威,这英语你应该没问题吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式