Double to cell from workspace?
Mostra commenti meno recenti
i have a variable which is (2100*40 double) .i need to convert to each to a cell.the outpur as (2100*40 cell)
1 Commento
SRI
il 14 Mar 2014
Yes you can use num2cell()
Risposta accettata
Più risposte (2)
Mischa Kim
il 14 Mar 2014
Modificato: Mischa Kim
il 14 Mar 2014
A = [1 2 3; 4 5 6]; % numeric array
B = {A}; % cell array
C = mat2cell(A); % cell array
David Sanchez
il 14 Mar 2014
data = rand(3,5); % your data here
create cell with data
cell_data = num2cell(data);
you can also take a look at
mat2cell
Categorie
Scopri di più su Data Type Conversion in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!