explanation for syntax of arrayfun
28 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Abirami
el 24 de Ag. de 2014
Comentada: Abirami
el 24 de Ag. de 2014
Hello
can anyone explain the syntax of the following code pls...
B= arrayfun(@(x) x, A, 'uni', 0);
thanks in advance
0 comentarios
Respuesta aceptada
Geoff Hayes
el 24 de Ag. de 2014
Abirami - see the documentation at arrayfun for details on the usage of this function. From your example,
B = arrayfun(@(x) x, A, 'uni', 0);
arrayfun will apply the anonymous function @(x) x on each element of A. The uni string must be equivalent to UniformOutput being set to 0 (or false) which from the documentation states Requests that the arrayfun function combine the outputs into cell arrays B1,...,Bm. The outputs of function func can be of any size or type. So here, func is the anonymous function.
Suppose
A = [1:5]'
A =
1
2
3
4
5
then
B = arrayfun(@(x) x, A, 'uni', 0)
B =
[1]
[2]
[3]
[4]
[5]
The output B is a 5x1 cell array. B is identical to A since our anonymous function would take in an element (x) and then just return it. If we had
B = arrayfun(@(x) 2*x, A, 'uni', 0)
B =
[ 2]
[ 4]
[ 6]
[ 8]
[10]
So each element in B is double that of A. Note that if we removed the uni option (and its value)
B = arrayfun(@(x) 2*x, A)
B =
2
4
6
8
10
Then B is no longer a cell array.
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!