String array and cell array are two types of containers for storing pieces of data. In this problem, you will be given a cell array of character vectors. Your job is to convert the cell array to a string array, which stores the same pieces of text data.
To begin with, let's assume that there are no missing type values in the input cell array.
Example:
Input: >> x = {'I','Love','MATLAB'} x = 1×3 cell array 'I' 'Love' 'MATLAB'
Output: >> y = strings(size(x)); >> [y{:}] = x{:} y = 1×3 string array "I" "Love" "MATLAB"
Note that the example shown above is not the best way to solve this problem. Try other approaches in order to achieve a leading score.
Related Problems in this series:
Find the two most distant points
1233 Solvers
Create a cell array out of a struct
189 Solvers
337 Solvers
String Array Basics, Part 3: Convert Cell Array with Missing Values to String Array
51 Solvers
Predicting life and death of a memory-less light bulb
244 Solvers
Problem Tags