matlab中的strcmp函数比较代码
时间: 2024-01-07 11:03:25 浏览: 116
数据结构-c语言-带main函数-串4-串比较-根据标准库函数strcmp()和定义求串比较函数的两种方法。
strcmp函数用于比较两个字符串是否相等,如果相等则返回1,否则返回0。以下是一个比较两个字符串的例子:
```matlab
str1 = 'Hello';
str2 = 'Hello';
if strcmp(str1, str2)
disp('The strings are equal');
else
disp('The strings are not equal');
end
```
在这个例子中,str1和str2都是字符串变量,并且它们的值都是'Hello'。如果使用strcmp函数比较这两个字符串,则会发现它们是相等的,因此会输出"The strings are equal"。
另一种情况是比较不同的字符串:
```matlab
str1 = 'Hello';
str2 = 'World';
if strcmp(str1, str2)
disp('The strings are equal');
else
disp('The strings are not equal');
end
```
在这个例子中,str1和str2的值分别为'Hello'和'World'。由于这两个字符串不相等,因此会输出"The strings are not equal"。
需要注意的是,strcmp函数比较字符串时区分大小写,因此'Hello'和'hello'被认为是不同的字符串。如果需要忽略大小写进行比较,可以使用stricmp函数。
阅读全文