フィルターのクリア

I have 4 arrays of 335 elements each, i want one array(resultant) whcih consists of first array element in first element and first array element of second array into second element of resultant array and first array element of third array into third

4 ビュー (過去 30 日間)
eg: a=[1;2;3] b=[4;5;6] c=[7;8;9]
and i want d=[1;4;7;2;5;8;3;6;9]
please help me out,

回答 (2 件)

bio lim
bio lim 2016 年 12 月 2 日
編集済み: bio lim 2016 年 12 月 2 日
Like this?
a=[1;2;3];
b=[4;5;6];
c=[7;8;9];
d = [a';b';c'];
d = reshape(d, [9 1]);
Output:
d =
1
4
7
2
5
8
3
6
9
  6 件のコメント
KSSV
KSSV 2016 年 12 月 2 日
Check the answer....below.
bio lim
bio lim 2016 年 12 月 2 日
It's still the same approach.
a=rand(335,1);
b=rand(335,1);
c=rand(335,1);
d=rand(335,1);
e=[a';b';c';d'];
e = reshape(e, [1340 1]);

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


KSSV
KSSV 2016 年 12 月 2 日
clc; clear all ;
a=[1;2;3] ;
b=[4;5;6] ;
c=[7;8;9] ;
abc = [a b c]' ;
iwant = abc(:)
  1 件のコメント
KSSV
KSSV 2016 年 12 月 2 日
x=rand(335,1) ;
y=rand(335,1) ;
z=rand(335,1) ;
w=rand(335,1) ;
xyzw = [x y z w]' ;
iwant = xyzw(:) ;

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

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by