Cell array to Matrices

3 vues (au cours des 30 derniers jours)
fartash2020
fartash2020 le 21 Juin 2018
Commenté : fartash2020 le 21 Juin 2018
Dear Matlab users, I have a cell array B 1x512 . now I want to divide every cell to a new matrix. So I will have 512 matrices.I prefer their names to be C1,C2...,C512. every "C" matrix is 10001x3 matrix.
I am using cell2mat option, but I want to write a loop which I cannot do it
C1=cell2mat(B(1))
thi is working just for one, I do not want to do it one-by-one.
Thanks in advance,

Réponse acceptée

Guillaume
Guillaume le 21 Juin 2018
You already have your C1, C2, ..., C512 in a very convenient container making it very easy to access: your cell array. Assuming your cell array is called C and not B, to get C1:
C{1}
to get C2:
C{2}
etc.
Creating numbered variables is an extremely bad idea. It's just going to make your code more complicated, slower, harder to debug for no gain whatsoever. See tutorial-why-variables-should-not-be-named-dynamically-eval for a complete explanation
What it looks like from your cell2mat(B(1)) is that you don't know how to access the data in a cell array. See the tutorials on the cell array page to learn the difference between () and {} indexing.
  1 commentaire
fartash2020
fartash2020 le 21 Juin 2018
Tnx Guillaume, you are right. I do not need to convert anything.
With my best regards,

Connectez-vous pour commenter.

Plus de réponses (1)

KL
KL le 21 Juin 2018
Use 3D matrices, it's a better idea.
C_mat = cell2mat(permute(C,[1,3,2]))
  2 commentaires
fartash2020
fartash2020 le 21 Juin 2018
To simply state what I want:
C1=cell2mat(B(1))
C2=cell2mat(B(2))
.
.
.
C512=cell2mat(B(512))
I want to write a loop for this
Walter Roberson
Walter Roberson le 21 Juin 2018
We firmly recommend against that. It would be better to continue to index the cell array.
If you have the case of needing to create each of the entries as separate variables in a .mat file then we can do that without ever creating the variables in your workspace.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by