I have the following problem: I want to simulate some content management system. Since this is quite complicated, I used a computer to get some (complex) equations that can only be exported to fortran77 code. On my development computer, this is not a problem (linux machine).
No, I want to do this on hardware, and here I have to use Windows. Unfortunately, Matlab does not support gfortran on windows. Therefore, I cannot compile fortran files in this field.
My idea now was to translate to C, since the C compiler is available in Matlab upon victory. Any other (best) options?
I have several SUBROUTINES in the following order.
SUBROUTINE sys_rhs (x, v, dx, param) REAL*8 x(6) C code is coming here RETURN END SUBROUTINE
Good practice and does the sys_rhs__
function sys_rhs__
in an interface function written in C? The problem is that I cannot test it, since I do not have massive access to the Windows machine. Therefore, it should work if I try, and I do not need to experiment a lot.
Also, what do I need in the windows? Where can I get them?
Thanks Christian
source share