Hi Friends,
I have an ADA function that needs to be converted to Fortran.
function Sumer (Mat: in Mat_Type) return Float is
Sum: Float := 0.0;
begin
for Row in Mat 'range (1) loop
for col in Mat 'range(2) loop
Sum := Sum + Mat(Row, Col);
end loop;
end loop...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.