The following is the mexopts.bat. I did not find any place to change /implib:C:\DOCUME~1\Administrator\LOCALS~1\Temp_lib6184.lib.
@echo off
rem CVF66OPTS.BAT
rem
rem Compile and link options used for building MEX-files
rem using the Compaq Visual Fortran compiler version 6.6
rem
rem...
Also tried this sample fortran code in the matlab help file. got the same error message.
C===========================================================
C timestwo.f
C Multiply the input argument by 2.
C
C This is a MEX-file for MATLAB.
C Copyright (c) 1984-2000 The MathWorks, Inc...
Thanks VisiGoth.
Actually I tried the examples that come with Matlab
in directory C:\Program Files\MATLAB\R2006a\extern\examples\mex\
I typed
mex -v yprime.f yprimefg.f
in matlab command windows, I got the same error message
-> Default options filename found in C:\Documents and...
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...