i have a variable which is (2100*40 double) .i need to convert to each to a cell.the outpur as (2100*40 cell)

 채택된 답변

추가 답변 (2개)

Mischa Kim
Mischa Kim 2014년 3월 14일
편집: Mischa Kim 2014년 3월 14일

1 개 추천

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 2014년 3월 14일

0 개 추천

data = rand(3,5); % your data here
create cell with data
cell_data = num2cell(data);
you can also take a look at
mat2cell

카테고리

도움말 센터File Exchange에서 Cell Arrays에 대해 자세히 알아보기

질문:

2014년 3월 14일

댓글:

SRI
2014년 3월 14일

Community Treasure Hunt

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

Start Hunting!

Translated by