Displaying data in a printable matlab table

1 回表示 (過去 30 日間)
Chuzymatics Chuzymatics
Chuzymatics Chuzymatics 2014 年 7 月 22 日
コメント済み: Joseph Cheng 2014 年 7 月 22 日
In the code below, I want to be able to display the t versus x values(usual table of values in algebra) in a printable table
t=0:30:360; x =0.5*sind(t) clf plot(t, x, '-sk', 'LineWidth', 2) table=[t',x'] The last line/command gives me a border-less table whose data mixed up/merged when exported to a word document. Please how may one create a printable matlab table containing data?

回答 (1 件)

Joseph Cheng
Joseph Cheng 2014 年 7 月 22 日
Use dlmwrite() to write the table data to a textfile or xlswrite() into excel.
  2 件のコメント
Chuzymatics Chuzymatics
Chuzymatics Chuzymatics 2014 年 7 月 22 日
Not clear enough
Joseph Cheng
Joseph Cheng 2014 年 7 月 22 日
Check the documentation for dlmwrite() function using "doc dlmwrite" and it can print it to a deliminated file for import. or use xlswrite() function to write to an excel file for copy+paste into word. No Builtin functions to display in bordered table for insertion into word. There are files on the fileexchange but you should search for them.
There are more complicated ways using activeX controls. Look online for better tutorials on how to control WORD with MATLAB.

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

カテゴリ

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