필터 지우기
필터 지우기

Code Blocks configuration for Calling Matlab code from C/C++

조회 수: 12 (최근 30일)
Nathan
Nathan 2013년 1월 25일
답변: Amir Sin 2018년 6월 8일
Hey Everybody,
I was just trying to go through a simple matlab tutorial for calling matlab code from c/c++ code and Im getting an error:
code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "engine.h"
int main()
{
printf("Hello world");
Engine *ep;
ep = engOpen("");
engEvalString(ep, "x=(1:1:10);");
engEvalString(ep,"y=x.^2;");
engEvalString(ep, "plot(x,y);");
engClose(ep);
return 1;
}
Build log(Added new lines to help readability):
mingw32-gcc.exe -Wall -g -Weffc++ -std=c++0x -I"C:\Program Files\MATLAB\R2012b\extern\include" -c C:\Users\Public\Documents\C++\CToMatlab\main.c -o obj\Debug\main.o
mingw32-g++.exe -L"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft"
-o bin\Debug\CToMatlab.exe obj\Debug\main.o
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libeng.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmat.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libemlrt.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmex.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmwblas.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmwblascompat32.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmwlapack.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmwmathutil.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libmx.lib"
"C:\Program Files\MATLAB\R2012b\extern\lib\win64\microsoft\libut.lib"
Error:
undefined reference to `engOpen' undefined reference to `engEvalString' undefined reference to engEvalString undefined reference to `engEvalString' undefined reference to `engClose'
I know that this is a linking error but not sure what I'm failing to link.
Any help would be apreciated.

채택된 답변

Evgeny Pr
Evgeny Pr 2013년 1월 25일
편집: Evgeny Pr 2013년 1월 25일
GCC compiler for "MATLAB Externals" is not supported on windows platform. You must use the Microsoft compiler.
...but, unfortunately in CodeBlocks IDE there is a parsing command-line for Microsoft compiler bug.
I think you should use Visual Studio Express. Everything is much easier to configure. Do not forget to specify the path to the libraries and header files to MATLAB extern:
matlabroot\extern\lib\<platform>\microsoft
matlabroot\extern\include\

추가 답변 (3개)

Nathan
Nathan 2013년 1월 25일
k thanks for the help I'll probably just switch to VS now.

Tonatiuh Toral
Tonatiuh Toral 2013년 4월 16일
편집: Tonatiuh Toral 2013년 4월 16일
Hello! I'm using Code:blocks in Ubuntu 12.10 and want to call Matlab from my C++ code. I have included the matlabroot\extern\include\ in the Search directories of my Code::blocks. I tryed with the engdemo.cpp and I'm getting the same errors.
  • undefined reference to engOpen
  • undefined reference to mxCreateDoubleMatrix
  • ...
  • ...
Can anyone help me with the proper configuration for using engine.h in Code::blocks?
Kind Regards!
  댓글 수: 1
Nathan
Nathan 2013년 4월 16일
http://wiki.codeblocks.org/index.php?title=64Bit_Windows this should help with starting...... after that you still need to specify matlab files on the include and compiler settings.

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


Amir Sin
Amir Sin 2018년 6월 8일
Usless ans

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by