strcmp matlab
时间: 2023-10-31 15:54:52 浏览: 108
strcmp函数详细说明
在 MATLAB 中,您可以使用 `strcmp` 函数来比较两个字符串是否相等。它返回一个逻辑值,如果两个字符串相等,则为真(1),否则为假(0)。
以下是使用 `strcmp` 函数的示例:
```matlab
str1 = 'hello';
str2 = 'world';
str3 = 'hello';
result1 = strcmp(str1, str2); % 返回 0,因为 'hello' 和 'world' 不相等
result2 = strcmp(str1, str3); % 返回 1,因为 'hello' 和 'hello' 相等
disp(result1); % 显示 0
disp(result2); % 显示 1
```
请注意,`strcmp` 函数区分大小写。如果您希望忽略大小写进行比较,可以使用 `strcmpi` 函数。
阅读全文