matlab字符数组元素拼接
时间: 2023-06-12 12:03:44 浏览: 164
字符串数组 matlab
在MATLAB中,可以使用字符串拼接函数`strcat()`和`strjoin()`来拼接字符数组元素。
1.使用`strcat()`函数拼接字符数组元素:
```matlab
a = 'hello';
b = 'world';
c = strcat(a,b); %拼接a和b
disp(c); %输出helloworld
```
2.使用`strjoin()`函数拼接字符数组元素:
```matlab
a = {'hello', 'world', '!'};
b = strjoin(a, ''); %拼接a中的元素,使用空字符串连接
disp(b); %输出helloworld!
```
其中,`strjoin()`函数将字符数组`a`中的元素用空字符串连接起来,得到一个新的字符串`b`。在`strjoin()`函数中,第二个参数可以指定连接字符,如果不指定,则默认使用空格进行连接。
阅读全文