比较MATLAB中不同大小的两个字符串单元数组
在本文中,我们将学习如何在MATLAB中比较不同大小的两个字符串单元数组。
字符串单元数组
在MATLAB中,字符串单元数组是一种可以存储不同类型元素的数据结构。单元数组的元素用花括号`{}`括起来。
语法
我们可以使用以下语法创建一个字符串单元数组:
A = {'string1', 'string2', 'string3',…'stringN'};
这里,`A`是一个包含N个字符串元素(即`string1`、`string2`……`stringN`)的字符串单元数组。
在MATLAB中,当我们需要存储和操作不同长度的字符串组,或者需要同时操作多个字符串时,就会使用字符串单元数组。
比较不同大小的两个字符串单元数组
MATLAB提供了几种不同的方法来比较不同大小的两个字符串单元数组。在本文的以下部分,将借助MATLAB程序解释一些比较不同大小的两个字符串单元数组的重要方法。
使用`ismember`函数比较不同大小的两个字符串单元数组
我们可以使用MATLAB的内置函数`ismember`来比较两个单元数组。`ismember`函数比较两个单元数组,并返回一个逻辑数组,该数组指示第一个单元数组的每个元素是否为第二个单元数组的成员。
语法
要比较两个单元数组,我们可以使用以下语法:
C = ismember(A, B);
下面的MATLAB程序演示了使用`ismember`函数比较不同大小的两个字符串单元数组的实现。
示例
% MATLAB program to demonstrate use of `ismember` function to compare two cell arrays of strings of different sizes % Create two cell arrays of strings x = {'Tutorials', 'Point', 'Online', 'Library'}; y = {'Tutorials', 'Point', 'is', 'a', 'Digital', 'Platform'}; % Compare arrays `x` and `y` using `ismember` function A = ismember(x, y) % Find the set different between two cell arrays using `setdiff` function B = setdiff(x, y)
输出
A = 1x4 logical array 1 1 0 0 B = 1x2 cell array {'Library'} {'Online'}
解释
在这个MATLAB程序中,我们首先创建两个不同大小的字符串单元数组,并将它们存储在`x`和`y`中。接下来,我们使用`ismember`函数比较这两个数组。这个`ismember`函数给出一个逻辑数组作为输出,指示数组`x`中的哪些元素存在于数组`y`中。然后,我们调用`setdiff`函数来显示存在于数组`x`中但不存在于数组`y`中的元素。
使用循环方法比较两个字符串单元数组
我们也可以使用循环来比较两个单元数组。下面的MATLAB程序演示了这种实现。
示例
% MATLAB program to compare two cell arrays using a loop % Create two cell arrays of strings x = {'Tutorials', 'Point', 'Online', 'Library'}; y = {'Tutorials', 'Point', 'is', 'a', 'Digital', 'Platform'}; % Run a loop to compare the corresponding elements of two arrays for i = 1:min(numel(x), numel(y)) if strcmp(x{i}, y{i}) disp(['Elements at index ', num2str(i), ' are the same.']); else disp(['Elements at index ', num2str(i), ' are different.']); end end
输出
Elements at index 1 are the same. Elements at index 2 are the same. Elements at index 3 are different. Elements at index 4 are different.
解释
在这个MATLAB程序中,我们首先创建两个包含字符串作为元素的单元数组`x`和`y`。接下来,我们运行一个`for`循环来比较这两个数组的对应元素。如果两个单元数组中特定索引处的字符串相等,则代码使用`disp`函数显示消息“索引'索引号'处的元素相同”。如果索引处的字符串不同,则代码使用`disp`函数显示消息“索引'索引号'处的元素不同”。
因此,这个MATLAB程序比较两个单元数组`x`和`y`的对应元素,并为每个索引显示一条消息,指示当前索引处的字符串是否相同。
结论
因此,这就是我们在MATLAB中比较不同大小的两个字符串单元数组的方法。在本文的上述部分,我们借助示例程序说明了两种最常用的方法来比较不同大小的两个字符串单元数组。