Convert Fortran to MATLAB

8 Ansichten (letzte 30 Tage)
Syed Arafun Nabi
Syed Arafun Nabi am 1 Nov. 2022
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 Kommentare
Rik
Rik am 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 am 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

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

James Tursa
James Tursa am 1 Nov. 2022
Bearbeitet: James Tursa am 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 Kommentar
Syed Arafun Nabi
Syed Arafun Nabi am 1 Nov. 2022
yes the [some equation] parts contains all the constrains to define the loops. thanks a lot

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Fortran with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by