原创 matlab: strcmp

2013-8-3 22:38 1722 17 17 分类: 工程师职场 文集: matlab

TF = strcmp(string,string)

TF = strcmp(string,cellstr)

TF = strcmp(cellstr,cellstr)

注:string:   A single character string or n-by-1 array of strings;

        cellstr:  A cell array of strings.

Example:

         1、strcmp('Yes', 'No')

                              ans =
                                          0
               strcmp('Yes', 'Yes')
                               ans =
                                          1
        2、Create two cell arrays of strings and call strcmp to compare them:
          A = {'Handle Graphics', 'Statistics';   ...
               '  Toolboxes', 'MathWorks'};

          B = {'Handle Graphics', 'Signal Processing';    ...
               'Toolboxes', 'MATHWORKS'};
          match = strcmp(A, B)
          match =
               1     0
               0     0

       3、

 

          A = {'Handle Graphics', 'Statistics';   ...
               '  Toolboxes', 'MathWorks'};

          B = {'Handle Graphics'};
          match = strcmp(A, B)
          match =
               1     0
               0     0

 

 

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
17
关闭 站长推荐上一条 /3 下一条