How to add column (after multiplication) in file imported from excel
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mohsin Munir
el 25 de Ag. de 2021
Comentada: Mohsin Munir
el 25 de Ag. de 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
Respuesta aceptada
Wan Ji
el 25 de Ag. de 2021
Then if you have new column named newColumn
previousTable = readtable('...');
newTable = [previousTable, table(newColunm)];
writetable(newTable, 'myNewTable.xls')
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!