I have
q1={[1],[3],[4]};
q2={[1;3],[3;4],[4;5]};
q3={[1;2;3;4;5;5],[1;2;3;4;5;67],[1;6;3;4;9;67]};
I use this code but not working
out= cellfun(@(w,e,r)(w;e;r),q1,q2,q3,'uni',0);
out={[1;1;3;1;2;3;4;5;5],[3;3;4;1;2;3;4;5;67],[4;4;5;1;6;3;4;9;67]}

 Akzeptierte Antwort

madhan ravi
madhan ravi am 24 Jan. 2019

0 Stimmen

out= cellfun(@(w,e,r)[w;e;r],q1,q2,q3,'uni',0);
% ^-----^------- square bracket!

2 Kommentare

Stephen23
Stephen23 am 24 Jan. 2019
Bearbeitet: Stephen23 am 24 Jan. 2019
Correct brackets solves the problem. A simpler solution: @vertcat
Agree with stephen:
out= cellfun(@vertcat,q1,q2,q3,'un',0);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Gefragt:

NA
am 24 Jan. 2019

Kommentiert:

am 24 Jan. 2019

Community Treasure Hunt

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

Start Hunting!

Translated by