Display the output in a Edit Field Text box in App-Designer

10 ビュー (過去 30 日間)
Avratanu Biswas
Avratanu Biswas 2019 年 3 月 30 日
コメント済み: Avratanu Biswas 2019 年 4 月 1 日
for instance ,
[h,p,ci,stats] = ttest2(x,y)
The above outputs, need to be displayed in a text box . (app designer )
Any help will be apprecited. Thanks in advance .

採用された回答

Cris LaPierre
Cris LaPierre 2019 年 4 月 1 日
Text fields only works for h and p.
load examgrades
x = grades(:,1);
y = grades(:,2);
[h,p,ci,stats] = ttest2(x,y);
app.hEditField.Value = h;
app.pEditField.Value = p;
Because ci is a vector, you'd have to use a table.
app.UITable.Data = ci;
Because stats is a structure, you'd have to either use a text field for each of the 3 fields or a table.
app.tstatEditField.Value = stats.tstat;
app.dfEditField.Value = stats.df;
app.sdEditField.Value = stats.sd;
or
app.UITable_2.Data = {stats.tstat,stats.df, stats.sd};
Since you need a table anyway, why not consider putting all the data into a single table? Everything should be a single row, so something like this:
app.UITable_3.Data = {h,p,ci(1),ci(2),stats.tstat,stats.df, stats.sd};
uitable.png
  1 件のコメント
Avratanu Biswas
Avratanu Biswas 2019 年 4 月 1 日
Thanks Cris , it worked perfectly ! :)

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by