matlab 判断变量是否与字符串一致
时间: 2023-10-26 15:08:19 浏览: 150
判断输入的两个字符串是否相等
5星 · 资源好评率100%
在 MATLAB 中,可以使用 `strcmp()` 函数来判断变量是否与字符串一致。该函数的语法如下:
```
TF = strcmp(str1, str2)
```
其中,`str1` 是一个字符串或字符向量,`str2` 可以是一个字符串、字符向量或一个单元格数组。该函数会返回一个逻辑值 `TF`,如果 `str1` 与 `str2` 相等,则 `TF` 为 true,否则为 false。
例如,判断变量 `input` 是否等于字符串 `'hello'`,可以采用如下代码:
```
if strcmp(input, 'hello')
disp('The input is hello.')
else
disp('The input is not hello.')
end
```
阅读全文