MATLAB: Combine arrays

arrayplotting

In order to visualise my simulation i want to plot some results. During my simulation i created multiple arrays of the size= 96×1, 96×3, 96×5.
Want i want to achieve is to combine these arrays into a single 96×9 array as i see no other way to plot them all into one graph.
Can anyone help? :
Thank you,
Kris

Best Answer

@Sean's answer is great. (That's my vote up there...)
To suggest other ways to plot arrays on the same axis, try
Approach 1)
figure, hold on
plot(x1)
plot(x2)
plot(x3)
Approach 2.)
plot(1:length(x1),x2,1:length(x2),x2,1:length(x3),x3)
Related Question