Why do some Excel processes fail to terminate after using XLSREAD, XLSWRITE or XLSFINFO in MATLAB?
조회 수: 26 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2012년 11월 23일
편집: MathWorks Support Team
2022년 11월 16일
When I use a command that calls Excel as an ActiveX server, such as XLSREAD, XLSWRITE, or XLSFINFO, an Excel.exe process is left in memory even after the command is finished or I close MATLAB. If I am running a script with many calls to XLSREAD, the ghost processes fill up my memory.
채택된 답변
MathWorks Support Team
2018년 12월 10일
편집: MathWorks Support Team
2018년 12월 10일
As of R2015b, this issue has been resolved as MATLAB will now only open one instance of Excel for a file and does not attempt to close it after the call.
Previous to R2015b, in some circumstances Excel may not shut down after calling XLSREAD, XLSWRITE, or XLSINFO from MATLAB.
Whenever one of these commands is executed in MATLAB on Windows and Excel is installed, a new instance of Excel is started to perform the operation using Excel's ActiveX interface. After the operation is completed, MATLAB requests that Excel quit, however in some circumstances, Excel may ignore this request.
One reason this may occur is if some other application has established an ActiveX connection to Excel and is hanging on to a reference to the interface, and not releasing it. The way ActiveX works is that if 2 applications both make connections to the same server, the server will not close until both applications have terminated their connection. The connection from MATLAB is being terminated, however it is possible that another application has made a connection to Excel. In the past we noticed an issue where Google Desktop Search would create such a connection, however starting with MATLAB 7.0.4 (R14SP2) this issue was resolved by working around the specific way that Google Desktop Search made its connection. If you are experiencing this same issue with a later version of MATLAB, or do not have Google Desktop Installed, there is likely another application on your computer which is holding on to the Excel application ActiveX reference.
One way to work around this issue is to identify the application that is causing this issue, then disable it. You can also contact the company which created the software to notify them of this issue.
Certain Excel add-ins may also prevent proper termination of Excel. Some known add-ins that might cause issues are Broadcom's "Send to Bluetooth" add-in (btsendto_office.dll) and Bloomberg's TaskpaneHost add-in. Disabling the add-ins that cause issues is a possible workaround.
When you use a Bloomberg add-in, that causes this issues: Please open a help chat (by pressing the help key twice on the Bloomberg keyboard) and ask for the technical departement. Bloomberg will then have a look into these issues.
As a last resort you can use the SYSTEM command via MATLAB to kill the process.
system('taskkill /F /IM EXCEL.EXE');
댓글 수: 3
Image Analyst
2016년 1월 9일
편집: MathWorks Support Team
2022년 11월 16일
Starting with R2015b, Excel does not shutdown after calls to xlsread() or xlswrite(). However there should be only one instance running:
Data Import and Export
Excel Spreadsheets: Read and write to the same spreadsheet repeatedly with improved performance of xlsread, xlswrite, readtable, and writetable functions
Repeated calls to the xlsread, xlswrite, readtable, and writetable functions show significant performance improvement.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!