フィルターのクリア

A general question of matrix to matrix

2 ビュー (過去 30 日間)
Martin
Martin 2015 年 8 月 12 日
コメント済み: Martin 2015 年 8 月 12 日
Hello buddies,
I have 2 matrices:
a = [ 1 2 3; 4 5 6 ]
b = [ 9 9 9; 9 9 9 ]
I'm wondering if there is a function, or an CPU non-burdensome way to get the following result:
c = [ 1 9 2 9 3 9 ; 4 9 5 9 6 9 ]
Right now I do it with for loop, but it take ALOT of time!
Any help will be very appreciated, thanks.
Have a good day,
-best

採用された回答

Adam
Adam 2015 年 8 月 12 日
編集済み: Adam 2015 年 8 月 12 日
reshape( [a; b], [2 6] )
with obvious generalisations for different sizes of vector and assumptions on a and b having the same dimensions
  1 件のコメント
Martin
Martin 2015 年 8 月 12 日
thanks :) now I can delete 90% of my script

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

その他の回答 (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