Effacer les filtres
Effacer les filtres

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

2 vues (au cours des 30 derniers jours)
Mohamuud hassan
Mohamuud hassan le 19 Mai 2015
Modifié(e) : Stephen23 le 19 Mai 2015
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 commentaire
Stephen23
Stephen23 le 19 Mai 2015
Modifié(e) : Stephen23 le 19 Mai 2015
@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.

Connectez-vous pour commenter.

Réponse acceptée

James Tursa
James Tursa le 19 Mai 2015
Modifié(e) : James Tursa le 19 Mai 2015
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

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by