matlab字符串比较
时间: 2023-08-20 13:08:50 浏览: 227
matlab 比较字符大小
在 MATLAB 中,可以使用 `strcmp` 函数来比较两个字符串是否相等。该函数返回一个布尔值,如果两个字符串相等,则返回 1,否则返回 0。以下是一个示例:
```matlab
str1 = 'Hello';
str2 = 'World';
if strcmp(str1, str2)
disp('The strings are equal');
else
disp('The strings are not equal');
end
```
输出结果为 "The strings are not equal",因为 `str1` 和 `str2` 不相等。
阅读全文