Effacer les filtres
Effacer les filtres

changes of data

1 vue (au cours des 30 derniers jours)
Nuno Fernandes
Nuno Fernandes le 25 Juil 2011
hi everyone
i have something like this
a=C3;A2/C3;C7;C9;A5/E1 and with this
b=regexp(a,';','split') i get this:
'C3' 'A2/C3' 'C7' 'C9' 'A5/E1'
Now the question:
How can i passa from this 'C3' 'A2/C3' 'C7' 'C9' 'A5/E1' to something like a matrix which has in the first line 'C3', second line 'A2/C3', third line 'C7'...
Any ideas?

Réponse acceptée

Nathan Greco
Nathan Greco le 25 Juil 2011
You would not be able to use a matrix, as matrices can only contain the same data types (all numerical or all character arrays) and must have rectangular dimensions (without empty spaces). You can't match up the columns of 'C3' and 'A2/C3', for example, because the latter has 5 characters (5 columns) while the first has 2. Use a cell array instead.
To get a column rather than a row from your output, transpose your b:
a='C3;A2/C3;C7;C9;A5/E1';
b=regexp(a,';','split')'
b will then become a 5x1 cell array.
-Nathan
  1 commentaire
Nuno Fernandes
Nuno Fernandes le 25 Juil 2011
thanks

Connectez-vous pour commenter.

Plus de réponses (1)

Oleg Komarov
Oleg Komarov le 25 Juil 2011
  1 commentaire
Nuno Fernandes
Nuno Fernandes le 25 Juil 2011
thanks:)

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by