how to use dlmwrite for excel sheet has three columns

5 vues (au cours des 30 derniers jours)
Sukhpal Kaur
Sukhpal Kaur le 28 Nov 2019
Commenté : Sukhpal Kaur le 28 Nov 2019
I have an excel file which has contain data into three columns. I want to change file type excel into .dat file using dlmwrite command. File type has changed but problem is that three columns data merge into one common. Now how to correct this?

Réponses (1)

KSSV
KSSV le 28 Nov 2019
T = readtable('myexcelfile.xlsx') ;
writetable(T,'out.dat') ;
  1 commentaire
Sukhpal Kaur
Sukhpal Kaur le 28 Nov 2019
When i using the above command for read table the excel file is reduced by one row. for exampe suppose i have 10 rows and three columns then after using readtable command the workspace shows 9 row and three columns instead of 10 and 3. After compliting the whole command it is showing
error using load
unknown text on line no. 1 of ASCII file...... "x"
At the end .dat file is not build.

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by