How to split strings lines to Matrix columns?

1 vue (au cours des 30 derniers jours)
I M
I M le 6 Juin 2016
Commenté : I M le 8 Juin 2016
I have .csv files in which the data comes in 12-bit format on each string line. Each bit is the state of a different event, and I would like to split each string line into 12 different matrix columns, so I can easily browse the states by matrix index.
Example:
Split
100010001000 100000000000
into
M=[1 0 0 0 1 0 0 0 1 0 0 0; 1 0 0 0 0 0 0 0 0 0 0 0]
I am using textscan to read the .csv into a cell array, but cannot manage to split it into different columns, since I do not have a defined delimiter. Any advice on this basic question would be greatly appreciated.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 6 Juin 2016
Modifié(e) : Azzi Abdelmalek le 6 Juin 2016
A={'100010001000'
'100000000000'}
M=cell2mat(cellfun(@(x) x-'0',A,'un',0))
  1 commentaire
I M
I M le 8 Juin 2016
Thanks! It worked exactly the way I was envisioning. Thank you also for the very prompt response.

Connectez-vous pour commenter.

Plus de réponses (1)

Andrei Bobrov
Andrei Bobrov le 6 Juin 2016
k=['100010001000'; '100000000000'];
out = k -'0'

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by