isempty
确定数组是否为空
说明
示例
空多维数组
空数组和缺失值
将空数组与包含缺失值的数组进行比较。
在 MATLAB® 中,空数组有至少一个维度长度等于零。包含缺失值(如 NaN
或 <undefined>
)的数组不一定为空。
创建包含缺失值的分类向量。
cat1 = categorical([missing missing])
cat1 = 1x2 categorical
<undefined> <undefined>
由于 cat1
没有长度为零的维度,因此它不为空。
TF1 = isempty(cat1)
TF1 = logical
0
创建一个 0×0 分类数组,并测试它是否为空。
cat2 = categorical([]); TF2 = isempty(cat2)
TF2 = logical
1
空字符串数组
比较空字符串数组和不包含字符的字符串。
创建一个字符串向量,其元素是不包含字符的字符串。str1
不为空,因为其维度的长度都不为零。
str1 = strings(1,3)
str1 = 1x3 string
"" "" ""
TF1 = isempty(str1)
TF1 = logical
0
创建一个 0×3 字符串数组,并测试它是否为空。
str2 = strings(0,3); TF2 = isempty(str2)
TF2 = logical
1
输入参数
A
— 输入数组
标量 | 向量 | 矩阵 | 多维数组 | 表 | 时间表
输入数组或表,指定为标量、向量、矩阵、多维数组、表或时间表。
提示
要确定字符串数组是否有空字符串(包含零个字符的字符串元素),请使用
==
运算符。例如,如果str
是包含零个字符的字符串,则str == ""
返回逻辑值1
(true
)。有关测试空字符串的详细信息,请参阅测试空字符串和缺失值。有关字符串比较的信息,请参阅比较文本。要测试数组中是否存在缺失值,请使用
ismissing
函数。
扩展功能
tall 数组
对行数太多而无法放入内存的数组进行计算。
此函数完全支持 tall 数组。有关详细信息,请参阅 tall 数组。
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
HDL 代码生成
使用 HDL Coder™ 为 FPGA 和 ASIC 设计生成 VHDL、Verilog 和 SystemVerilog 代码。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
GPU 数组
通过使用 Parallel Computing Toolbox™ 在图形处理单元 (GPU) 上运行来加快代码执行。
此函数完全支持 GPU 数组。有关详细信息,请参阅在 GPU 上运行 MATLAB 函数 (Parallel Computing Toolbox)。
分布式数组
使用 Parallel Computing Toolbox™ 在集群的组合内存中对大型数组进行分区。
此函数完全支持分布式数组。有关详细信息,请参阅使用分布式数组运行 MATLAB 函数 (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)