Mex function Implementation for nested-functions

6 ビュー (過去 30 日間)
sree
sree 2023 年 11 月 23 日
コメント済み: sree 2023 年 11 月 29 日
Hello,
We are trying to implement mex function for a nested function code.
We have a main function , addition()
We have another function - multiplication() which is getting called from addition function.
Also, we have another function division() which is getting called from multiplication function.
We have mexFunction written inside addition.c and getting the below error after executing the matlab file.
Error using mex
/usr/bin/ld: /tmp/mex_3689884132576332_19/addition.o: in function `addition':
addition.c:(.text+0x49): undefined reference to `multiplication'
We are attaching the screenshot for your reference.
We have declared multiplication and division functions inside commonheader.h file.
We have function definitions for multiplication and division functions in operation.c.
Please let us know if we are missing anything in implementing this mex -nested function.
Thank you
Sreelakshmi

採用された回答

Bruno Luong
Bruno Luong 2023 年 11 月 23 日
you did not include operation.c in mex command
  3 件のコメント
sree
sree 2023 年 11 月 29 日
編集済み: sree 2023 年 11 月 29 日
Thank you for sharing this idea with me.
By adding operation.c, during the mex build, we are able to resolve undefined reference error related to function.
But still there are a few dependency issues(like "unknown type name" errors for some structures defined inside files of different libraries ) within the functions called.
I'm currently trying to include those libraries to mex function to resolve that.
Thank you
Sreelakshmi
sree
sree 2023 年 11 月 29 日
Yes, I did in the same way.It resolved the issue.
Thank you
Sreelakshmi

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeWrite C Functions Callable from MATLAB (MEX Files) についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by