mex fortran code containing intrinsic function using Intel fortran compiler

조회 수: 2 (최근 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

채택된 답변

A.B.
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
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.
Duy Nguyen
Duy Nguyen 2019년 9월 25일
편집: Duy Nguyen 2019년 9월 25일
Perfect! Thank you so much.
Wished I had read that earlier from the Fortran website, would have saved me tons of time trying to figure out why cosd compiles in standalone mode but not in mex :) Thank you!!!!!

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

추가 답변 (1개)

James Tursa
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?
  댓글 수: 1
Duy Nguyen
Duy Nguyen 2019년 9월 24일
Hi,
This is a sample call that I make: pitch(1,1)=COSD(pitch_angle), where pitch_angle is a real number.
The code compiles and runs just fine within the Visual Studio 2015 and 2017 environment. But when I try to mex it within Matlab, I get the undefined external error. I looked at the build log file generated by the Visual Studio 2015 compiler and see no library that I need to link in, so I can't figure out what the Mex is looking for to resolve cosd.
Thanks.

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

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by