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

2 views (last 30 days)
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?

Accepted Answer

the cyclist
the cyclist on 10 Jan 2023
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}

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

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

Start Hunting!