Inserting multiple columns into an existing matrix in equal distance

3 次查看(过去 30 天)
I would like to break down the red matrix (see below) into 3 columns and insert each column in equal distance into the yellow one.

采纳的回答

James Tursa
James Tursa 2017-12-11
E.g.,
yellowx = reshape(yellow,[],size(red,2));
result = reshape([red;yellowx],size(red,1),[]);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by