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

2 vues (au cours des 30 derniers jours)
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?

Réponse acceptée

the cyclist
the cyclist le 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}

Plus de réponses (0)

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by