フィルターのクリア

How to generate a basic table of answers?

2 ビュー (過去 30 日間)
Chelsey
Chelsey 2011 年 7 月 18 日
I'm sure this is a very elementary process, it seems to me that it shouldn't be that hard, but for the life of me I can't figure it out: My code does some basic calculations on a large set of data; I would like for the answers to these calculations to be displayed in a table. I have:
dz = diff(dep);
drho = diff(sigth);
drhodz = drho./dz;
maxd = max(drhodz);
inum = find(drhodz==max(drhodz));
I would like to see a table with columns of maxd & inum. Any ideas?

回答 (4 件)

Fangjun Jiang
Fangjun Jiang 2011 年 7 月 18 日
h=uitable('data',rand(3,1))

Walter Roberson
Walter Roberson 2011 年 7 月 18 日
You can use uitable() if you want to present the table in a GUI; you can use fprintf() if you want to present the table as printed output.

Sean de Wolski
Sean de Wolski 2011 年 7 月 18 日
And to add to the list:

Fangjun Jiang
Fangjun Jiang 2011 年 7 月 18 日
Could do this too.
a=magic(5);
open('a');
  1 件のコメント
Walter Roberson
Walter Roberson 2011 年 7 月 18 日
(which uses the variable editor)

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

カテゴリ

Help Center および File ExchangeDebugging and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by