How can I make this operation on two matrixes ?

1 回表示 (過去 30 日間)
fathi
fathi 2017 年 7 月 21 日
コメント済み: fathi 2017 年 7 月 21 日
Hi every body
I have two matrixes as : M = [ 2, 8, 12 ] and K = [ 4 ,1 , 5 ].
So How can i get Z = [ 2, 4, 8, 1, 12, 5]. I mean the first value in the Z took from first value in M and the second value in Z from first value from K. And the third value in Z is the second in M and the fourth value in Z is the second value in K and so on, one by one.
Thank you

採用された回答

Walter Roberson
Walter Roberson 2017 年 7 月 21 日
reshape([M;K], 1, [])
  1 件のコメント
fathi
fathi 2017 年 7 月 21 日
Thank you Walter Roberson.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by