how to convert cell in matrix

조회 수: 2 (최근 30일)
Sara
Sara 2018년 9월 6일
댓글: Sara 2018년 9월 12일
I have a 1*4 cell array and all members have the same size "{ [100*1] , [100*1], [100*1] ,[100*1]}" . I want to convert cell array in a way that get a matrix of (4*100). I mean each member of the cell array would be a column of my matrix.

채택된 답변

OCDER
OCDER 2018년 9월 6일
A = repmat({rand(100, 1)}, 1, 4); %your 1x4 cell containin 100x1 matrix per each cell
B = [A{:}] %your 100x4 matrix
  댓글 수: 1
Sara
Sara 2018년 9월 12일
Thanks for you help

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Geoff Hayes
Geoff Hayes 2018년 9월 6일
Sara - cell2mat might be what you are looking for.

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by