Problem 1741. Numeric array to cell array of strings (easy)
Given a numeric array (A) and a 1xk cell array of strings (C), return a cell array (B) that is the same size as A and in which each element of B is the string in C indexed by the same element in A.
You may assume that every element of A is an integer on the interval [1,k].
Example
If
A = [1 2 3
2 3 1
3 1 2];
C = {'yes','no','maybe'};
Then
B = {'yes' 'no' 'maybe'
'no' 'maybe' 'yes'
'maybe' 'yes' 'no'};
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers59
Suggested Problems
-
Sort a list of complex numbers based on far they are from the origin.
5790 Solvers
-
Number of 1s in the Binary Representation of a Number
476 Solvers
-
Magic is simple (for beginners)
11102 Solvers
-
Who has power to do everything in this world?
482 Solvers
-
find the maximum element of the matrix
535 Solvers
More from this Author43
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!