view test/fcn-handle/@fhdr_other/getsize_arrayfun.m @ 33658:b1d6e40ac737 stable tip

NEWS.9.md: Fix typo and minor formatting changes. * etc/NEWS.9.md: Fix typo. Adjust whitespace. Use markdown syntax for code snippets.
author Markus Mützel <markus.muetzel@gmx.de>
date Wed, 05 Jun 2024 11:27:35 +0200
parents 6731d89ef576
children
line wrap: on
line source

function r = getsize_arrayfun (x)
  r = arrayfun (@(i) numel (x(i).d), 1:numel (x), 'uniformoutput', true);
end