how to convert cell array to a matrix?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have a 5X4 matrix whose each element is a cell array. how to convert it to a simple matrix of elements.
5 Commenti
Risposte (1)
Jos (10584)
il 30 Lug 2018
A = {[1 2 3],[4 5],6 ; [11 12],13,[] ; 21, [22 23], [24 25]} % data
B = arrayfun(@(k) cat(2,A{k,:}),1:size(A,1),'un',0) % make row vectors
C = padcat(B{:}) % pad vectors with NaNs
My function PADCAT can be downloaded here: https://uk.mathworks.com/matlabcentral/fileexchange/22909-padcat-varargin
6 Commenti
Jos (10584)
il 1 Ago 2018
This is all rather vague ... Can you show us some code, showing where you get stuck?
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!