how i can change this string array into one row and multiple columns.

2 次查看(过去 30 天)
hello every one; how i can change this string into one row and multiple columns. for example:
daalo= {'000001001001010111100101111111001101001111001101000000010000001011011110100110101001010101000111001111110101111010010000110010111110111110000000000000000000'};
how i can change the format into;
daalo:{0;0;0;0;0;1;0;0;1;0;0;1;0;1......... until las digit?
  1 个评论
Stephen23
Stephen23 2015-5-19
编辑:Stephen23 2015-5-19
@abdulkarim hassan: stop putting everything in cell arrays. Cell arrays are great, but if you don't need them then they just make your code more complicated and slower. Learn to use MATLAB's basic data types and your own code will be much simpler and faster: James Tursa's answer shows how using basic data types can be much neater code and much faster to calculate with.

请先登录,再进行评论。

采纳的回答

James Tursa
James Tursa 2015-5-19
编辑:James Tursa 2015-5-19
Your syntax in the question specifies a cell array output of double values, so here is how to do that:
n = numel(daalo{1});
result = mat2cell(daalo{1}-'0',1,ones(1,n));
If you want a column result, then
result = mat2cell(daalo{1}-'0',1,ones(1,n))';
Do you really need a cell array containing individual double numbers for your downstream processing, and not a simple double array? E.g., would this be better for your downstream processing?
result = daalo{1}-'0'; % double row vector result

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by