Concatenate vectors stored in cell array

조회 수: 4 (최근 30일)
Lennart Zielstra
Lennart Zielstra 2022년 9월 22일
편집: Matt J 2022년 9월 22일
Dear all,
Currently, I am working on storing real-time data in a cell array. My current method appends the new data to the cell array after it has been collected. Each cell contains a 3x1 vector. Now I would like to concatenate these cells such that I acquire a 3xn (n = amount of iterations) matrix. To be more exact. Now I have a cell of 27 * 100 (with n=100) and I would like to acquire a cell of 27 * 1 with each element containing a matrix of 3 * 100.
Thanks in advance

채택된 답변

Matt J
Matt J 2022년 9월 22일
편집: Matt J 2022년 9월 22일
cell2mat( reshape( yourCell.' ,1,[],27) )

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by