python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Is using a default method pointer valid Fortran? (IFort compiler bug)
I just want to know for sure if this is valid Fortran or if I've misunderstood some usage. Is the following code valid?
Module MathFxns
implicit none
Type A_T
procedure(DoStuff_F...
TrippLamb
Votes: 0
Answers: 0
Optimizing array multiplication in fortran
I am trying to optimize the array multiplication of the following type in fortran:
do i = 1, n
do j = 1, n
do k = 1, n
do i1 = 1, n
do j1 = 1, n
do k1 =...
Djole
Votes: 0
Answers: 1
Fortran 77 compilation for IRI 2016 model
I've been trying to compile the IRI model lately, somewhat unsuccessfully. I've downloaded the IRI 2016 + common files + indices files, and using the test file to, well, test. I'm using gfortran (thou...
Chloé Benz
Votes: 0
Answers: 0
Python - can a Matrix be a variable?
I want to convert some Fortran code into Python but there is this block of code:
do i=1,maxcomp
do j=1,maxcomp
do k=1,nvbin
ng(i,j,k) = 0
end do
end do
end do
...
polly
Votes: 0
Answers: 3