Problem 380. Convert a numerical matrix into a cell array of strings

Created by Aurelien Queffurust

Given a numerical matrix, output a cell array of string.

For example:

if input = 1:3

output is {'1','2','3'}

which is a cell 1x3

Problem Group