Matlab 字符串连接
【摘要】
example1:
str = 'www'
str =
www
>> str2 = 'hello'
str2 =
hello
>> [str,str2]
ans =...
example1:
str = 'www'
str =
www
>> str2 = 'hello'
str2 =
hello
>> [str,str2]
ans =
wwwhello
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
example2:
>> str3 = 'welcome'
str3 =
welcome
>> strcat(str,str3)
ans =
wwwwelcome
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
example3:
strcat({'red','yellow'},{'green','blue'})
ans =
'redgreen' 'yellowblue'
- 1
- 2
- 3
- 4
- 5
- 6
example4:
>> strcat(['red','yellow'],['green','blue'])
ans =
redyellowgreenblue
- 1
- 2
- 3
- 4
- 5
- 6
遇到matlab里面的不懂的方法,第一方法应该是使用 help + 方法名,来看matlab文档。
example:
>> help strcat
strcat - Concatenate strings horizontally
This MATLAB function horizontally concatenates strings s1,...,sN.
s = strcat(s1,...,sN)
strcat 的参考页
另请参阅 cat, cellstr, horzcat, strjoin, vertcat
% 点击 ** 的参考页 即可,查看详细文档
>> help exist
exist - Check existence of variable, function, folder, or class
This MATLAB function returns the status of name:
exist name
exist name kind
A = exist('name','kind')
exist 的参考页
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
文章来源: positive.blog.csdn.net,作者:墨理学AI,版权归原作者所有,如需转载,请联系作者。
原文链接:positive.blog.csdn.net/article/details/83149684
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)