フィルターのクリア

How to add column (after multiplication) in file imported from excel

1 回表示 (過去 30 日間)
Mohsin Munir
Mohsin Munir 2021 年 8 月 25 日
コメント済み: Mohsin Munir 2021 年 8 月 25 日
I have an excel file. I imported the whole table using readtable command. Now i want to apply multiply and conditions on various columns which will result in new columns. I want to add those columns in the same file. how do i proceed
  1 件のコメント
Mohsin Munir
Mohsin Munir 2021 年 8 月 25 日

Thanks. I would like to know how we can link excel formulae in columns with matlab. Is this possible?

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

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 25 日
Then if you have new column named newColumn
previousTable = readtable('...');
newTable = [previousTable, table(newColunm)];
writetable(newTable, 'myNewTable.xls')

その他の回答 (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