How to make mex file of C program in matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
I have to run a matlab code namely "huff2mat.m" but it uses a C file namely "unravel.c". It also asks me to make a mex file of it. How can i use the file "unravel.c" in matlab.
댓글 수: 0
채택된 답변
Junaid
2012년 4월 24일
if it is mex file, its mean C code for matlab. then simply compile it by this command in matlab editor.
mex unravel.c;
then you can call unravel as function in matlab.
댓글 수: 3
Divyashree
2024년 12월 31일
I am facing the samme issue.Which compiler is suitable for matlab R2014a windows 10(64 bit). So i can download and install
Walter Roberson
2024년 12월 31일
편집: Walter Roberson
2024년 12월 31일
https://www.mathworks.com/content/dam/mathworks/mathworks-dot-com/support/sysreq/files/SystemRequirements-Release2014a_SupportedCompilers.pdf lists the r2014a compatible compilers. Scroll down to get to the 64 bit area.
The supported compilers that work with Windows 10 are all Microsoft Professional releases, except for sdk 7.1. You will have some trouble installing sdk 7.1 in Windows 10; see https://www.mathworks.com/matlabcentral/answers/233850-how-can-i-install-sdk-7-1-on-windows-10
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Troubleshooting in MATLAB Compiler SDK에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!