フィルターのクリア

creating an empty cell

1 回表示 (過去 30 日間)
Jason
Jason 2011 年 4 月 4 日
I have two matrix:
A = [1 2 3]
B = [4 5 6 7; 9 8 7 6; 5 4 3 2]
I want to combine these two matrice into:
C = [ 1 2 3; 4 5 6 7; 9 8 7 6; 5 4 3 2]
I want the top left corner to be an empty cell because in the end I want to write matrix C to a csv file so I would like to have that cell empty. I tried playing around with vertcat and horzcat but I keep getting dimensions are not consistent error.
  1 件のコメント
Sean de Wolski
Sean de Wolski 2011 年 4 月 4 日
Well written question; you get a vote!

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

採用された回答

Sean de Wolski
Sean de Wolski 2011 年 4 月 4 日
Fill it with a Nan:
C = [[A, nan];B];
  2 件のコメント
Jason
Jason 2011 年 4 月 4 日
This answer will do for what I am doing but it would be nice to have an empty blank cell instead.
Zeeshan Ahmad Khalil
Zeeshan Ahmad Khalil 2018 年 3 月 28 日
i also want to keep a cell blank so that when i concatenate it with the other cells it will be removed automatically.

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

その他の回答 (1 件)

Andrew Newell
Andrew Newell 2011 年 4 月 4 日
dlmwrite('myfile.csv',A,'coffset',1)
dlmwrite('myfile.csv',B,'-append')
  1 件のコメント
Jason
Jason 2011 年 4 月 4 日
perfect!

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by