textscan not reading file properly
显示 更早的评论
I have used textscan successfully in this manner for other files (different file extension). I am not sure why it does not work for this excel sheet (.xlsx). It is telling me that M = [0x1 double] [0x1 double].
clear
fid=fopen('data.xlsx');
M = textscan(fid,'%n%n')
fclose(fid);
Any help is appreciated. Thanks!
2 个评论
Walter Roberson
2013-7-2
Which MATLAB release are you using, and which operating system? If you are on MS Windows, which version of Excel do you have installed ?
per isakson
2013-7-2
textscan cannot read an xlsx-file. It isn't text.
回答(2 个)
Azzi Abdelmalek
2013-7-1
M=xlsread('data.xlsx');
per isakson
2013-7-2
编辑:per isakson
2013-7-2
Could it be that the cells in Excel are defined as right-justified text? Try
[num,txt,raw] = xlsread('data.xlsx')
and inspect all three outputs.
Which versions of Excel and Matlab do you use?
类别
在 帮助中心 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!