Convert Fortran to MATLAB

5 views (last 30 days)
I want to convert the following Fortran code to MATLAB. Any help will be appriciated-
NB = 100
F=0.
DO i=1,NB
[some equations]
IF(abs(xm)<wm)
ym=ye+d*sy
IF(abs(ym)<wm) CYCLE
ENDIF
d=LL/sz
xt=xe+d*sx
IF(abs(xt)>wt) CYCLE
yt=ye+d*sy
IF(abs(yt)>wt) CYCLE
F=F+1.
ENDDO
  2 Comments
Rik
Rik on 1 Nov 2022
While completely uncommented, this doesn't look very complicated. What have you tried?
It is also possible to compile Fortran to mex, allowing you to call the Fortran function from Matlab.
Syed Arafun Nabi
Syed Arafun Nabi on 1 Nov 2022
I didn't know about Fortran to mex earlier.
I am stuck in nested loop here & made mistake-
NB = 100;
Ft = 0;
i = 0;
while i<N
[some equations]
if (abs(xm)<wm)
ym=ye+d*sy
if (abs(ym)<wm)
d=LL/sz;
xt=xe+d*sx;
if(abs(xt)>wt)
yt=ye+d*sy
IF(abs(yt)>wt)
F = 1;
end
end
end
end
Ft = Ft+F

Sign in to comment.

Accepted Answer

James Tursa
James Tursa on 1 Nov 2022
Edited: James Tursa on 1 Nov 2022
Here is the equivalent MATLAB code:
NB = 100;
F = 0;
for i=1:NB
% [some equations]
if( abs(xm) < wm )
ym = ye + d*sy;
if( abs(ym) < wm )
continue
end
end
d = LL/sz;
xt = xe + d*sx;
if( abs(xt) > wt )
continue
end
yt = ye + d*sy;
if( abs(yt) > wt )
continue
end
F = F + 1;
end
However, this code looks a bit strange to me. When you look at all the variables that are being tested within the loop, none of them seem to be calculated from anything that is changing within the loop, unless these changes are within the code block labeled [some equations].
  1 Comment
Syed Arafun Nabi
Syed Arafun Nabi on 1 Nov 2022
yes the [some equation] parts contains all the constrains to define the loops. thanks a lot

Sign in to comment.

More Answers (0)

Categories

Find more on Fortran with MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!