RosettaCodeData/Task/Array-concatenation/MATLAB/array-concatenation-2.m

8 lines
102 B
Mathematica
Raw Permalink Normal View History

2013-04-10 15:42:53 -07:00
>> c = randn([3,4,5]);
>> d = randn([3,4,7]);
>> e = cat(3,c,d);
>> size(e)
ans =
3 4 12