mex fortran code containing intrinsic function using Intel fortran compiler
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I'm trying to mex a fortran code using the Intel Parallel studio XE 2019 with microsoft visual studio 2015 compiler. My fortran code calls intrinsic functions cosd, sind, and atand. However, the linker keeps complaining that these are unresolved external symbols. Are there libraries that I need to link in during the mex that will define these intrinsic functions? Thanks.
Error using mex
Creating library rcssig.lib and object rcssig.exp
read_reftab.obj : error LNK2019: unresolved external symbol COSD referenced in
function READ_REFTAB
body_to_range.obj : error LNK2001: unresolved external symbol COSD
0 个评论
采纳的回答
A.B.
2019-9-25
编辑:A.B.
2019-9-25
cosd, sind, atand, are NOT part of the Fortran standard, they are GNU extensions to the Fortran language and not understandable by Intel. These GNU functions take the angle in degree instead of radians (which is the deafult Fortran standard for sin, cos, atan). If you want to compile the files by Intel, multiply the arguments of all instances of cosd, sind by pi/180 = 0.01745329251, which converts the angles in degrees to radians, then replace all of the instances of cosd, sind, with cos, sin respectively, which are part of the Fortran standard and that should resolve the error.
As for atand, this function returns angle in degrees, so you will have to replace atand() with 57.2957795131 * atan()
where 57.2957795131 = 180/pi
2 个评论
James Tursa
2019-9-25
编辑:James Tursa
2019-9-25
From the Intel Fortran website:
Also note that OP specifically stated his compiler understands cosd( ) just fine in a standalone compile, just not in a mex compile.
更多回答(1 个)
James Tursa
2019-9-24
编辑:James Tursa
2019-9-24
Can you post the offending code? Maybe you are calling it with a non-real argument and the compiler is complaining that it can't find a specific function for your specific argument type.
How are you doing the compiling and linking? With the mex command, or building from within the Visual Studio environment?
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!