필터 지우기
필터 지우기

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