arrange the values in an array
古いコメントを表示
I have an array A(80 rows and 5 columns). I want to export it as a table to microsoft word as the values in A (i:i+4,j)are placed in one cell with no cell line between them. Not sure if it's possible in Matlab.
3 件のコメント
Andrei Bobrov
2011 年 4 月 29 日
Hi Hassan, in this case i = 1: size (A,1) -4, is not it?
Hassan
2011 年 4 月 29 日
Andrei Bobrov
2011 年 4 月 29 日
agree or Excel or textfile.txt
採用された回答
その他の回答 (1 件)
Friedrich
2011 年 4 月 29 日
Or you can use Word as Com Server. I prepared a little example for you:
e = actxserver('Word.Application')
e.visible = 1
doc = e.newDocument.Application.Documents.Add
doc.Content.InsertAfter('text')
カテゴリ
ヘルプ センター および File Exchange で Spreadsheets についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!