I would like to convert a numeric array like this:
[12.3134 25.3234 34.4190 466.6765 55.5454]
Into a cell array of strings, with a single digit after the decimal point like this:
'12.3' '25.3' '34.6' '466.6' '55.5'
This arrayfun gets me close, but I can't figure out how to add the format spec to the num2str function.
arrayfun(@num2str, A, 'UniformOutput', false)