How to convert cell to matrix
Afficher commentaires plus anciens
I have a 100001x2 cell. Each cell is 1x1.
How can I convert it to matrix? I've tried cell2mat but I can't make it work
5 commentaires
Jon
le 10 Jan 2022
You don't provide enough detail for anyone to figure out how to help you with your problem. Please provide a self contained example, that reproduces the problem, and also let us know exactly what error messages you are getting
Torsten
le 10 Jan 2022
We can't tell - usually it should work with cell2mat. Are you sure each cell contains a numeric value ? Can you share your code for testing ?
Manuela Maria ALAMPI
le 10 Jan 2022
Matt J
le 10 Jan 2022
The code you've shown does not produce a 100001x2 cell array. You should attach the cell array dirctly in a.mat file so that we can avoid the steps of generating it.
Image Analyst
le 10 Jan 2022
ca = signal.textdata([6:end],[1,2]);
save('answers.mat', 'ca');
Then attach answers.mat with the paperclip icon.
Réponse acceptée
Plus de réponses (2)
cell2mat should have worked
A=num2cell(rand(100001,2)); whos A
B=cell2mat(A); whos B
Simon Chan
le 10 Jan 2022
Try this, where A is your 100001x2 cell:
cell2mat(cellfun(@(x) x,A))
1 commentaire
Manuela Maria ALAMPI
le 10 Jan 2022
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!