Error involving 2018a xlsread
显示 更早的评论
I just updated to the new Matlab 2018a and now my xlsread function does not work and this is the error I am receiving. I have two sheets in the Data.xlsx file and want to pull the data from the code given but it gives the shown.
Error using xlsread (line 260) Error registering event(s), Invalid ConnectionPointContainer
Error in lab5 (line 8) drag = xlsread('Data.xlsx',1,'d25:d122');
5 个评论
Guillaume
2018-4-17
Can you:
- type dbstop if caught error in the command line
- try your xlsread again
- tell us on which line of which file it breaks in the debugger
Since dbstop if caught error can get annoying very quickly, to return to normal operation, type
dbclear if caught error
afterward.
David Frew
2018-4-17
编辑:Guillaume
2018-4-18
Guillaume
2018-4-18
What happens if you execute these two lines:
excel = actxserver('Excel.Application');
version = get(excel, 'Version');
David Frew
2018-4-19
Walter Roberson
2018-4-19
You can do those at the command line. They are steps for debugging purposes.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Whos 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!