namedargs2cell
将包含名称-值对组的结构体转换为元胞数组
说明
示例
将结构体转换为交错元胞数组
创建一个具有字段 XLim
、Color
和 Box
的结构体,并为每个字段赋值。使用 namedargs2cell
将结构体转换为元胞数组,该数组会交错字段名称和值。
S.XLim = [1,100]; S.Color = "red"; S.Box = "on"; C = namedargs2cell(S)
C = 1×6 cell array {'XLim'} {1×2 double} {'Color'} {["red"]} {'Box'} {["on"]}
将名称-值结构体转换为名称-值对组
编写一个函数,该函数接受特定坐标区对象属性的名称-值对组,并对这些属性值施加其他限制。
将名称-值结构体转换为名称和值相互交错的元胞数组。将该元胞数组传递给 axes
函数,该函数接受元胞数组中的名称-值对组。返回坐标区对象的句柄。
function a = myAxes(axesProps) arguments axesProps.XLim (1,2) {mustBeNumeric} axesProps.Color string {mustBeMember(axesProps.Color,["red","green","blue"])} axesProps.Box matlab.lang.OnOffSwitchState end nvCell = namedargs2cell(axesProps); a = axes(nvCell{:}); end
namedarg2cell
函数的输出将 arguments
代码块中定义的 axesProps
名称-值结构体转换为由名称和值组成的交错元胞数组。将 nvCell
元胞数组传递给坐标区函数,该函数接受元胞数组形式的名称-值对组。
a = myAxes("XLim",[1,10],"Color","red","Box","on");
输入参数
S
— 名称-值结构体
结构体
名称-值结构体,指定为标量结构体数组。
数据类型: struct
输出参量
C
— 由交错的名称和值组成的元胞数组
元胞数组
由交错的名称和值组成的元胞数组,以 1×2n 元胞数组形式返回,其中 n 是输入结构体中的字段数。
数据类型: cell
扩展功能
C/C++ 代码生成
使用 MATLAB® Coder™ 生成 C 代码和 C++ 代码。
基于线程的环境
使用 MATLAB® backgroundPool
在后台运行代码或使用 Parallel Computing Toolbox™ ThreadPool
加快代码运行速度。
此函数完全支持基于线程的环境。有关详细信息,请参阅在基于线程的环境中运行 MATLAB 函数。
版本历史记录
在 R2019b 中推出
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)