Has the MEX function (mxGetComplexDoubles) been deprecated in R2024b?
I am preparing a MEX file that includes the function: (mxGetComplexDoubles).
I tried to compile and link it to get the executable file (*. mexw64) corresponding to the source file: (*.F) using either of the following commands:
mex -R2018a filename.F
mex -R2018a -I"C:Program FilesMATLABR2024bexterninclude" -L"C:Program FilesMATLABR2024bexternlibwin64microsoft" -llibmex -llibmx filename.F
The compilation was successful; however, the linking was not because:
unresolved external symbol mxgetcomplexdoubles800
This happened despite my file containing the command (mxGetComplexDoubles) rather than the command (mxGetComplexDoubles800).
Surprisingly, upon searching for (mxGetComplexDoubles), I found that it is not there in:
"C:Program FilesMATLABR2024bbinwin64libmex.dll"
"C:Program FilesMATLABR2024bbinwin64libmat.dll"
My questions:
Has the function (mxGetComplexDoubles) been deprecated in R2024b?
What should I do in that case?I am preparing a MEX file that includes the function: (mxGetComplexDoubles).
I tried to compile and link it to get the executable file (*. mexw64) corresponding to the source file: (*.F) using either of the following commands:
mex -R2018a filename.F
mex -R2018a -I"C:Program FilesMATLABR2024bexterninclude" -L"C:Program FilesMATLABR2024bexternlibwin64microsoft" -llibmex -llibmx filename.F
The compilation was successful; however, the linking was not because:
unresolved external symbol mxgetcomplexdoubles800
This happened despite my file containing the command (mxGetComplexDoubles) rather than the command (mxGetComplexDoubles800).
Surprisingly, upon searching for (mxGetComplexDoubles), I found that it is not there in:
"C:Program FilesMATLABR2024bbinwin64libmex.dll"
"C:Program FilesMATLABR2024bbinwin64libmat.dll"
My questions:
Has the function (mxGetComplexDoubles) been deprecated in R2024b?
What should I do in that case? I am preparing a MEX file that includes the function: (mxGetComplexDoubles).
I tried to compile and link it to get the executable file (*. mexw64) corresponding to the source file: (*.F) using either of the following commands:
mex -R2018a filename.F
mex -R2018a -I"C:Program FilesMATLABR2024bexterninclude" -L"C:Program FilesMATLABR2024bexternlibwin64microsoft" -llibmex -llibmx filename.F
The compilation was successful; however, the linking was not because:
unresolved external symbol mxgetcomplexdoubles800
This happened despite my file containing the command (mxGetComplexDoubles) rather than the command (mxGetComplexDoubles800).
Surprisingly, upon searching for (mxGetComplexDoubles), I found that it is not there in:
"C:Program FilesMATLABR2024bbinwin64libmex.dll"
"C:Program FilesMATLABR2024bbinwin64libmat.dll"
My questions:
Has the function (mxGetComplexDoubles) been deprecated in R2024b?
What should I do in that case? mex function mxgetcomplexdoubles MATLAB Answers — New Questions