Merge a matrix present in the same position but in two different cells

조회 수: 1 (최근 30일)
Hi. I should merge the matrix located at position {1,1} (and so on for all other matrices) present in cell_A (1464x2) and cell (1464x1).
Here is a graphic example of the final cell I would like to get as a result (new_cell). Is there a quick and easy way to do this?

채택된 답변

the cyclist
the cyclist 2023년 1월 10일
Here is one way:
% Inputs
rng default
cell = {rand(2,3); rand(5,7); []};
cell_A = {rand(2,1); rand(5,1); []};
% Output
new_cell = cellfun(@(x,y)[x y],cell,cell_A,"UniformOutput",false)
new_cell = 3×1 cell array
{2×4 double} {5×8 double} {0×0 double}

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by