concatenating 4 columns of different dimensions

6 ビュー (過去 30 日間)
Chaitanya Bade
Chaitanya Bade 2017 年 5 月 19 日
コメント済み: Chaitanya Bade 2017 年 5 月 20 日
I have four column vectors out of which two are of one size while the other two are of another size. For example
TIMESTEPS = 0.02, 0.05, 0.10, 0.17, 0.19
XDATA = 0.1, 0.2, 0.3, 0.4, 0.5
PEAKTIME = 3, 7, 9
PEAKVALS = 4, 6, 8
I want to concatenate them horizontally and fill up the spaces with zero and write to a excel data file using csvwrite. How do I do it?
Any help would be highly appreciated.
Thanks!

採用された回答

Walter Roberson
Walter Roberson 2017 年 5 月 19 日
M = TIMESTEPS;
M(1:length(XDATA),2) = XDATA;
M(1:length(PEAKTIME),3) = PEAKTIME;
M(1:length(PEAKVALS),4) = PEAKVALS;
  1 件のコメント
Chaitanya Bade
Chaitanya Bade 2017 年 5 月 20 日
Thank you so much!

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by