Convert cell array to string

5 visualizzazioni (ultimi 30 giorni)
Willam Willam
Willam Willam il 25 Feb 2013
Hi. I want to ask how do I want to convert below example to a string which contains data in char. Eg: retrieveblock =
0 1 1 1 0 0 0 1 0 1 1 0 0 0 0 1
  1 Commento
Jan
Jan il 1 Mar 2013
Modificato: Jan il 1 Mar 2013
@William: Please post the input data such that we can know the class and the size. Currently it is not clear, if your data are a double vector, a cell vector or any equivalent data also. But guessing this detail wastes time.
Please use meaningful tags, because they are used to classify the questions. All questions in this forum concern "matlab".

Accedi per commentare.

Risposte (2)

Sean de Wolski
Sean de Wolski il 25 Feb 2013
x = rand(1,10)>0.5;
num2str(x)
If x was a cell array of strings you could always call char()
x = cellstr(num2str(rand(1,10)>0.5));
char(ans)
  2 Commenti
Willam Willam
Willam Willam il 1 Mar 2013
excuse me.. it does not work
Jan
Jan il 1 Mar 2013
Sean has offered two possible solutions. Answering "it does not work" does not allow to improve them. Please, William, post enough details.

Accedi per commentare.


Jan
Jan il 1 Mar 2013
Guessed input:
d = [0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1];
str = char(d + '0');

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by