How do I change a file from .mexw64 to .m?

조회 수: 16 (최근 30일)
Hsiu
Hsiu 2014년 6월 18일
Hi all! I want to add the function pixelIdxlistsn into my pathway, but the function I was given is in the .mexw64 format. I tried to add that in but matlab does not seem to read it. Thus, I tried to change it to .m by just changing the name and that does not work too. What will be a good way for me to add this function? Thank you!

채택된 답변

James Tursa
James Tursa 2014년 6월 18일
편집: James Tursa 2014년 6월 18일
A .mexw64 file is compiled machine code for a Windows 64-bit setup. So it must be used by a 64-bit MATLAB version running under Windows. To run it, you simply need to place the pixelldxlistsn.mexw64 file into the current directory or into any directory that is on the MATLAB path. You cannot simply change the .mexw64 extension to .m, since .m files are text files with m-code in them (which is NOT what is in a mexw64 file). Mex files are sometimes version specific, so in some cases you may need to run a particular mexw64 file using the same version of MATLAB that it was compiled with. Also, you generally can't de-compile the mexw64 file into an m-file.
  댓글 수: 3
Kaustubha Govind
Kaustubha Govind 2014년 6월 19일
No, you will need to get the MEX binary for Mac platforms to be able to run it on a Mac.
Md Abu Talhamainuddin Ansary
Md Abu Talhamainuddin Ansary 2017년 4월 23일
Sir from where I can download pixelldxlistsn.mexw64 file?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Adding custom doc에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by