tags:

views:

82

answers:

1

Hello,

I have a following fortran program:

program test
implicit none

real :: a, b, c
read*,a
read*,b
c=a*b
if(c<0)then
print*,"OK"
else
print*,"NOT OK"
endif
end

I want to use this program with MATLAB with S-function, but I don't know any ways. Can you help me ?

can you help me?

A: 

The documentation on this looks pretty good to me. What have you tried so far ? And what in particular are you having difficulties with ?

High Performance Mark

related questions