フィルターのクリア

How to overwrite average values to same class (or label)?

1 回表示 (過去 30 日間)
HCLEE
HCLEE 2022 年 11 月 8 日
コメント済み: HCLEE 2022 年 11 月 8 日
Hi, I'm a beginner.
I want put the average values to the same class as shown in the picture.
Can I ask which commend would be helpful to me?

採用された回答

Marcel
Marcel 2022 年 11 月 8 日
編集済み: Marcel 2022 年 11 月 8 日
Not sure what you are exactly trying to do, but you can programmatically insert data into e.g. a UITable using this
% Left side
% First class: app.UITable.Data(1,1)
% Second class: app.UITable.Data(1,2)
% Mass: app.UITable.Data(1,3)
% (if i dont make a mistake. if so just swap the numbers)
app.UITable.Data(1,1) = cellstr("Im a awesome value");
  1 件のコメント
HCLEE
HCLEE 2022 年 11 月 8 日
I want put the averaged mass and concentration values to the same name of class of the raw data.
The raw excel file was loaded as table,
table = readtable("table.xlsx", opts, "UseExcel", false);
And the values in same classes were averaged as below,
table_avg = varfun(@mean,table,'GroupingVariable',{'1st_Class' '2st_Class'},'InputVariable',{'mass_kg','conc.'});
But I cannot find the way to put the averaged values to the raw data matching with the class name.

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

その他の回答 (0 件)

カテゴリ

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