How to combine two arrays with different dimensions into one array in one column.

4 次查看(过去 30 天)
Hey guys. Does any of you know a nifty way to combine two arrays of different dimensions into one array.
for example i want to combine
A = (3000,1)
B = (2500,1)
and i want to to combine A and B into C
C = (5500,1)

回答(1 个)

Stephen23
Stephen23 2018-5-3
编辑:Stephen23 2018-5-3
C = [A;B]
Basic MATLAB concepts, such as how to make and concatenate arrays, are explained in the introductory tutorials (which are highly recommended for all beginners):

类别

Help CenterFile Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by