iscellstr
确定输入是否为字符向量元胞数组
说明
示例
确定数组是否为字符向量元胞数组
创建一些不同的数组,然后确定它们是否为字符向量元胞数组。
测试字符向量元胞数组。
C1 = {'Smith','Chung','Morales'; ... 'Sanchez','Peterson','Adams'}
C1 = 2x3 cell
{'Smith' } {'Chung' } {'Morales'}
{'Sanchez'} {'Peterson'} {'Adams' }
tf = iscellstr(C1)
tf = logical
1
C1
的每个元胞都包含一个字符向量,因此 iscellstr
返回 1
。
将 C1
转换为字符串数组并进行测试。
str = string(C1)
str = 2x3 string
"Smith" "Chung" "Morales"
"Sanchez" "Peterson" "Adams"
tf = iscellstr(str)
tf = logical
0
str
是字符串数组,而非元胞数组,因此 iscellstr
返回 0
。
测试包含不同数据类型的元素的元胞数组。
X = rand(1,3); C2 = {'red','blue',X}
C2=1×3 cell array
{'red'} {'blue'} {[0.8147 0.9058 ... ]}
tf = iscellstr(C2)
tf = logical
0
C2
具有一个不包含字符向量的元胞,因此 iscellstr
返回 0
。
输入参数
A
— 输入数组
标量 | 向量 | 矩阵 | 多维数组
输入数组,指定为标量、向量、矩阵或多维数组。A
可以是任何数据类型。
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅Run MATLAB Functions in Thread-Based Environment。
分布式数组
使用 Parallel Computing Toolbox™ 在集群的组合内存中对大型数组进行分区。
此函数完全支持分布式数组。有关详细信息,请参阅Run MATLAB Functions with Distributed Arrays (Parallel Computing Toolbox)。
版本历史记录
在 R2006a 之前推出
MATLAB 命令
您点击的链接对应于以下 MATLAB 命令:
请在 MATLAB 命令行窗口中直接输入以执行命令。Web 浏览器不支持 MATLAB 命令。
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)