Clear Filters
Clear Filters

Concatenate content of cells containing vectors

3 views (last 30 days)
Hello, is there a simpler way to produce this result without 'for loop' ?
Thanks a lot.
A{1,1} = [0 1] ;
A{2,1} = 2 ;
A{3,1} = [3 4 5 ];
disp(A)
{[ 0 1]} {[ 2]} {[3 4 5]}
B{1,1} = 10 ;
B{2,1} = [ ];
B{3,1} = [ 10 11 12];
disp(B)
{[ 10]} {0×0 double} {[10 11 12]}
out = horzcatcellmat(A,B);
disp(out)
{[ 0 1 10]} {[ 2]} {[3 4 5 10 11 12]}
C = {[ 100 200 300]};
disp(C)
{[100 200 300]}
out = horzcatcellmat(A,C);
disp(out)
{[ 0 1 100 200 300]} {[ 2 100 200 300]} {[3 4 5 100 200 300]}
function A = horzcatcellmat(A,B)
if nargin == 0
A{1,1} = 1 ;
A{2,1} = 2 ;
A{3,1} = [3 4 5 ];
B{1,1} = 10 ;
B{2,1} = [ ];
B{3,1} = [ 10 11 12];
out = horzcatcellmat(A,B);
disp(out)
C = {[ 100 200 300]};
out = horzcatcellmat(A,C);
disp(out)
else
if size(A,1) == 1 && size(B,1) > 1
A = repmat(A,[size(B,1),1]);
end
if size(B,1) == 1 && size(A,1) > 1
B = repmat(B,[size(A,1),1]);
end
assert(size(A,1), size(B,1),'Size of both arguments are not compatible')
sizY= size(A,1);
% --------- ORIGINAL QUESTION
for ind = 1 : sizY
A(ind) = {horzcat(A{ind},B{ind})};
end
% ---------
% EDIT WITH PROPOSED ANSWERS :
A = cellfun(@(a,b)[a,b], A,B,'UniformOutput',false); % Thx to Matt J
A = cellfun( @horzcat , A,B,'UniformOutput',false); % Thx to Stephen23
%
end
if nargout == 0
A=[];
end
end
  2 Comments
Dyuman Joshi
Dyuman Joshi on 17 Mar 2023
Edited: Dyuman Joshi on 17 Mar 2023
You might want to address cases when the number of inputs are not equal to 2 (Unless you are sure they won't occur) and the case where A has more rows than B.
Matthieu
Matthieu on 17 Mar 2023
the 'assert' catches the case if A has not the same number of rows than B.
Indeed, the case if nargin == 1 is not handled...
However, the core question was: How to remove the for loop

Sign in to comment.

Accepted Answer

Matt J
Matt J on 17 Mar 2023
Simpler, yes. Faster, no.
A{1,1} = 1 ;
A{2,1} = 2 ;
A{3,1} = [3 4 5 ];
B{1,1} = 10 ;
B{2,1} = [ ];
B{3,1} = [ 10 11 12];
C=cellfun(@(a,b)[a,b], A,B,'uni',0)
C = 3×1 cell array
{[ 1 10]} {[ 2]} {[3 4 5 10 11 12]}
  3 Comments
Matthieu
Matthieu on 18 Mar 2023
Thx Stephen23, simpler to read indeed (to my point of view)

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!