matlab连接字符串
时间: 2023-10-31 22:43:26 浏览: 0
Matlab个字符串连接
在MATLAB中,可以使用加号(+)或方括号([])来连接字符串。
使用加号连接字符串:
str1 = 'Hello';
str2 = 'World';
str3 = str1 + ' ' + str2;
使用方括号连接字符串:
str1 = 'Hello';
str2 = 'World';
str3 = [str1 ' ' str2];
阅读全文
Matlab个字符串连接