c++ and matlab functions equivalent
조회 수: 6 (최근 30일)
이전 댓글 표시
correct me if i'm wrong.. as i just started learning how to use c++ and matlab, there is a matter i confused. i know that to call c++ code from matlab i have to replace my main() to mexFunction(). i've done that..here i want to know is that functions like mexprintf and soon must be used instead of cout(c++) in other source files? and is it the functions like mexprintf, mexCALLMATLAB etc only used inside mexFunction?
댓글 수: 0
채택된 답변
Friedrich
2013년 6월 11일
Hi,
yes and yes. See at the bottom here for the cout question
and for the mexPrintf and mexCallMATLAB: Those functions are definied in the mex.h and work only inside a MEX file.
댓글 수: 1
James Tursa
2013년 6월 11일
편집: James Tursa
2013년 6월 11일
@Khairul: To clarify, all of the mex API functions can be used anywhere in your mex code. You don't have to call them from inside the mexFunction itself.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!