Cell array to Matrices
Ältere Kommentare anzeigen
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,
Akzeptierte Antwort
Weitere Antworten (1)
KL
am 21 Jun. 2018
Use 3D matrices, it's a better idea.
C_mat = cell2mat(permute(C,[1,3,2]))
2 Kommentare
fartash2020
am 21 Jun. 2018
Walter Roberson
am 21 Jun. 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.
Kategorien
Mehr zu Logical finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!