cannot delete file after complie using mex

조회 수: 17 (최근 30일)
lz liu
lz liu 2016년 4월 21일
댓글: xingxingcui 2021년 10월 14일
I complied cpp file using "mex",and created ".mexw64" file, then I modified my cpp file, but a problem occured at this time.
Error using mex
LINK : fatal error LNK1104: cannot open file“matrixMultiply.mexw64”
when I tried delete “matrixMultiply.mexw64", another problem occured:
Warning: File not found or permission denied
I do like this when complie:
blaslib = fullfile(matlabroot,'extern','lib',computer('arch'),'microsoft','libmwblas.lib');
mex('-v', '-largeArrayDims', 'matrixMultiply.cpp', blaslib);
how can I fix it?

답변 (1개)

Jan
Jan 2016년 4월 21일
This problem occurres, when the mexw64 file is used by another instance of Matlab. Run
clear matrixMultiply
in these Matlab sessions, or close these sessions.
  댓글 수: 2
lz liu
lz liu 2016년 4월 21일
I tried clear matrixMultiply,then when I deleted matrixMultiply.mexw64,the problem still occured.
Warning: File not found or permission denied
xingxingcui
xingxingcui 2021년 10월 14일
Similar question, how can I solve it?
"The operation could not be completed because the file was already open in MATLAB"

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile 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!

Translated by