arrayfun matlab的用法,matlab arrayfun 函数使用

本文详细介绍了MATLAB中的arrayfun函数,包括如何计算每个字段的元素数量、获取数组的大小、计算平均值以及进行结构数组间的比较。通过具体的代码示例,展示了arrayfun在处理非标量结构数组时的功能和用法。
摘要由CSDN通过智能技术生成

% To run the examples in this section, create a nonscalar structure array with arrays of different sizes in field f1.

s(1).f1 = rand(3, 6);

s(2).f1 = magic(12);

s(3).f1 = ones(5, 10);

% Count the number of elements in each f1 field.

counts = arrayfun(@(x) numel(x.f1), s)

% The syntax @(x) creates an anonymous function. This code returns%

% counts =

% 18 144 50

% Compute the size of each array in the f1 fields.

[nrows, ncols] = arrayfun(@(x) size(x.f1), s)

% This code returns

%

% nrows =

% 3 12 5

% ncols =

% 6 12 10

% Compute the mean of each column in the f1 fields of s. Because the output is nonscalar, set UniformOutput to false.

averages = arrayfun(@(x) mean(x.f1), s, 'UniformOutput', false)

% This code returns

%<

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值