Apply function to each element of array
applies the function B
= arrayfun(func
,A
)func
to the elements of
A
, one element at a time. arrayfun
then
concatenates the outputs from func
into the output array
B
, so that for the i
th element of
A
, B(i) = func(A(i))
. The input argument
func
is a function handle to a function that takes one input
argument and returns a scalar. The output from func
can have any
data type, so long as objects of that type can be concatenated. The arrays
A
and B
have the same size.
You cannot specify the order in which arrayfun
calculates the
elements of B
or rely on them being done in any particular
order.
applies B
= arrayfun(___,Name,Value
)func
with additional options specified by one or more
Name,Value
pair arguments. For example, to return output
values in a cell array, specify 'UniformOutput',false
. You can
return B
as a cell array when func
returns
values that cannot be concatenated into an array. You can use
Name,Value
pair arguments with the input arguments of
either of the previous syntaxes.
[B1,...,Bm] = arrayfun(___)
returns multiple
output arrays B1,...,Bm
when func
returns
m
output values. func
can return output
arguments that have different data types, but the data type of each output must be
the same each time func
is called. You can use this syntax with
any of the input arguments of the previous syntaxes.
The number of output arguments from func
need not be the same
as the number of input arguments specified by A1,...,An
.
cell2mat
| cellfun
| groupsummary
| rowfun
| spfun
| splitapply
| structfun
| varfun