rmfield
删除结构体中的字段
说明
示例
删除单个字段
定义一个包含名为 a
、b
和 c
的字段的标量结构体。
s.a = 1; s.b = 2; s.c = 3;
删除字段 b
。
field = 'b';
s = rmfield(s,field)
s = struct with fields:
a: 1
c: 3
删除多个字段
定义一个包含 first
、second
、third
和 fourth
字段的标量结构体。
S.first = 1; S.second = 2; S.third = 3; S.fourth = 4;
删除字段 first
和 fourth
。
fields = {'first','fourth'}; S = rmfield(S,fields)
S = struct with fields:
second: 2
third: 3
输入参数
s
— 输入结构体
结构体数组
输入结构体,指定为结构体数组。
数据类型: struct
field
— 字段名称
字符数组 | 字符向量元胞数组 | 字符串数组
字段名称,指定为字符数组、字符向量元胞数组或字符串数组。
示例: 'f1'
示例: {'f1';'f2'}
数据类型: char
| cell
| string
扩展功能
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
分布式数组
使用 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)