Convert cell array to string
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
Jan
2013-3-1
编辑:Jan
2013-3-1
@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".
回答(2 个)
Sean de Wolski
2013-2-25
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 个评论
Jan
2013-3-1
Sean has offered two possible solutions. Answering "it does not work" does not allow to improve them. Please, William, post enough details.
Jan
2013-3-1
Guessed input:
d = [0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 1];
str = char(d + '0');
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!