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?