필터 지우기
필터 지우기

Concatenate matrices from cell array

조회 수: 63 (최근 30일)
Jasper
Jasper 2014년 11월 11일
이동: Dyuman Joshi 2024년 1월 31일
Hello,
I have a cell array with different length matrices in each cell, i.e. the number of columns is always the same, but the number of rows differs. I want to combine all those matrices together in 1 big matrix, and have difficulties doing so. I know it's best to pre-allocate the final matrix before filling it, so thats what I do, but I can't get the actual filling to work.
For example:
A = rand(5,2);
B = rand(7,2);
C = rand(15,2); % just 3 diff length matrices
cell = {A B C}; % ABC into cell array
nrows = cellfun(@length, combi); %get rows in each cell
sum_rows = sum(nrows);% get total rows required
Final = zeros(sum_rows,2); % pre-allocate matrix of appropriate size
Please help me to formulate a loop (over n cells in cell array) which adds the nth cell to the Final matrix each iteration. Thanks very much for any help.
Jasper

채택된 답변

Andrei Bobrov
Andrei Bobrov 2014년 11월 11일
A = rand(5,2);
B = rand(7,2);
C = rand(15,2);
cc = {A B C};
out = cat(1,cc{:});
  댓글 수: 1
Subhosit Ray
Subhosit Ray 2018년 6월 1일
이동: Dyuman Joshi 2024년 1월 31일
you make things look so simple =) good job andrei

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by