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

1 vue (au cours des 30 derniers jours)
Mohsin Munir
Mohsin Munir le 25 Août 2021
Commenté : Mohsin Munir le 25 Août 2021
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 commentaire
Mohsin Munir
Mohsin Munir le 25 Août 2021

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

Connectez-vous pour commenter.

Réponse acceptée

Wan Ji
Wan Ji le 25 Août 2021
Then if you have new column named newColumn
previousTable = readtable('...');
newTable = [previousTable, table(newColunm)];
writetable(newTable, 'myNewTable.xls')

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by