how will we convert xls files into mat files please help me
66 次查看(过去 30 天)
显示 更早的评论
how will we convert xls files into mat files? please help me
1 个评论
Image Analyst
2014-4-20
Original question in case varunesh deletes it:
how will we convert xls files into mat files? please help me
采纳的回答
kei hin
2013-9-4
Try this
file = dir('*.xl*'); %dir excel
filename = file.name; %filename_excel
excel_path = [pwd, '\', filename]; %get the path of the excel
[ndata, headertext] = xlsread(excel_path); %read the data from the excel
save('a.mat','ndata'); %save to a.mat
1 个评论
arun anoop m
2020-7-27
No sir , it wont work. Whichever XLS file u convert,
just try
whos -file filename.mat
you can see both filename.xls and filename.mat not same.
Better goto MATLAB. Go to workspace. Click on that . RIght corner down arrow, then click 'new'. And fill features values. And save workspace. It give filename.mat file.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!