Problem 43672. String Array Basics, Part 2: Convert String Array to Cell Array; No Missing Values

String array and cell array are two types of containers for storing pieces of data. In this problem, you will be given a string array. Your job is to convert the string array to a cell array of character vectors, which stores the same pieces of text data.

To begin with, let's assume that there are no missing type values in the input string array.

Example:

Input:
>> x = string({'I','love','MATLAB'})
x = 
  1×3 string array
    "I"    "love"    "MATLAB";
Output:
>> y = {'I','love','MATLAB'}
y =
  1×3 cell array
    'I'    'love'    'MATLAB';

Related Problems in this series:

Solution Stats

62.38% Correct | 37.62% Incorrect
Last Solution submitted on Feb 11, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers124

Suggested Problems

More from this Author29

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!