Double to cell from workspace?

343 Ansichten (letzte 30 Tage)
sandy
sandy am 14 Mär. 2014
Kommentiert: SRI am 14 Mär. 2014
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 Kommentar
SRI
SRI am 14 Mär. 2014
Yes you can use num2cell()

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 14 Mär. 2014
num2cell()

Weitere Antworten (2)

Mischa Kim
Mischa Kim am 14 Mär. 2014
Bearbeitet: Mischa Kim am 14 Mär. 2014
Sandy, use mat2cell, or, simply, curly braces:
A = [1 2 3; 4 5 6]; % numeric array
B = {A}; % cell array
C = mat2cell(A); % cell array

David Sanchez
David Sanchez am 14 Mär. 2014
data = rand(3,5); % your data here
create cell with data
cell_data = num2cell(data);
you can also take a look at
mat2cell

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by