Hi all,
I am new to Mex. I tried to compile a fortran code.
I use the following simple fortran code to test.
**********************************
subroutine return_a(a)
real, intent(out) :: a
a=1
end subroutine return_a
**********************************
the fortran...