fortran90
generate a sequence array in fortran
Is there an int开发者_如何学Gorinsic in Fortran that generates an array containing a sequence of numbers from a to b, similar to python\'s range()[详细]
2023-02-04 14:03 分类:问答Functional Arguments in FORTRAN
Problem I am trying to have a function be the argument to another function however I keep getting the error:[详细]
2023-01-30 13:30 分类:问答what does for_write_seq_lis do?
I am debugging a Fortran 90 pr开发者_StackOverflowogram with valgrind. I get errors having this in the trace[详细]
2023-01-30 07:01 分类:问答Order of eigenvectors in dsygv
When I call dsygv, I obtain the eigenvectors as a matrix. Are these eigenvectors along the co开发者_Go百科lumns or along the rows of the matrix ?Along the columns[详细]
2023-01-29 16:57 分类:问答keeping array limits in fortran during subroutine call
I have the following program module test contains subroutine foo() integer, allocatable :: a(:) allocate(a(-5:5))[详细]
2023-01-28 21:26 分类:问答Undefined behavior for intent(out) spliced array in fortran 90?
I am experiencing very weird behavior when I do this. I assume this is the origin of the issue, but I could be wrong. If any of you can confirm this is indeed undefined behavior, I would at least know[详细]
2023-01-28 14:33 分类:问答Reading variable length/types row in Fortran
I ha开发者_如何转开发ve a row of data in fortran, and I need to read in the different values. The number of values can be anything, and the type as well. Examples[详细]
2023-01-26 12:32 分类:问答insane number of continuation lines in fortran (ifort)
apparently, a limit exists in the number of allowed continuation lines in Fortran compilers. I have a temporary pathological case (made for quick testing purposes) where I am required to initialize a[详细]
2023-01-25 06:25 分类:问答difference between POINTER and ALLOCATABLE
what is the difference between these two codes type Foo real, allocatable :: bar(:) end type and typ开发者_Python百科e Foo[详细]
2023-01-22 05:15 分类:问答MPI_COMM_WORLD handle loses value in a subroutine
my program is as follows: module x use mpi !x includes mpi module implicit none ... contains subroutine do_something_with_mpicommworld[详细]
2023-01-20 16:02 分类:问答