フィルターのクリア

how to convert two one dimensional arrays into one two dimenstional array

20 ビュー (過去 30 日間)
rubia
rubia 2013 年 4 月 2 日
i have two single dimensional array named as A,B. now i want to write these two arrays into a one array of two dimensiona.and store it in a two dimensional array named C.

採用された回答

Wayne King
Wayne King 2013 年 4 月 2 日
A = ones(20,1);
B = ones(20,1);
C = [A B];
  1 件のコメント
rubia
rubia 2013 年 4 月 2 日
actually,i have a a one dimesional array fm contains mean of a image, and another one dimensional array fd contains standard deviation sd,for every pixel. now i want store these two fm,fs as a feature vector (fm,fd).

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by