how to use dlmwrite for excel sheet has three columns
Show older comments
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?
Answers (1)
KSSV
on 28 Nov 2019
T = readtable('myexcelfile.xlsx') ;
writetable(T,'out.dat') ;
1 Comment
Sukhpal Kaur
on 28 Nov 2019
Categories
Find more on Spreadsheets in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!