All Fortran Answers
- fortran: integer*4 vs integer(4) vs integer(kind=4)
- convert integers to strings to create output filenames at run time
- why segmentation fault is happening in this openmp code?
- output formatting: too much whitespace in gfortran
- changing array dimensions in fortran
- format string for output dependent on a variable
- procedure with assumed-shape dummy argument must have an explicit interface
- how does blas get such extreme performance?
- correct suffix for fortran 2003 source file - intel fortran compiler
- how to initialize two-dimensional arrays in fortran
- where to put `implicit none` in fortran
- tentative definitions in c and linking
- unexpected “padding” in a fortran unformatted file
- computing the cross product of two vectors in fortran 90
- why are the elements of an array formatted as zeros when they are multiplied by 1/2 or 1/3?
- passing external function of multiple variables as a function of one variable in fortran
- reading a binary file with python
- fortran openmp program shows no speedup of cpu_time()
- mpi_recv overwrites parts of memory it should not access
- how to alias a function name in fortran
- print to standard output from a function defined in an fortran module
- gfortran for dummies: what does mcmodel=medium do exactly?
- function pointer arrays in fortran
- good profiler for fortran and mpi
- line truncated, syntax error in argument list
- reading data file in fortran with known number of lines but unknown number of entries in each line
- strange label usage for an if condition in a do loop
- what flags do you set for your gfortran debugger/compiler to catch faulty code?
- fortran save statement
- how to write wrapper for 'allocate'
- how to get priorly-unknown array as the output of a function in fortran
- fortran: `read(*,*)` != command-line arguments. how to use command line arguments?
- difference between “character*10 :: a” and “character :: a(10)”
- error: nonnegative width required in format string at (1)
- function in fortran, passing array in, receiving array out
- in fortran 90, do array dimensions have to be declared beforehand?
- mpi_gather gives seg fault in the most basic code
- creating a fortran interface to a c function that returns a char*
- how to increase array size on-the-fly in fortran?
- what is the purpose of result variables in fortran?
- gfortran does not allow character arrays with varying component lengths
- how to override a structure constructor in fortran
- function has no implicit type
- pass arrays from c/c++ to fortran and return a calculated array
- defining a function returning an array
- direct indexing of function return value in fortran
- fortran subroutine returning wrong values
- passing type bound procedures as arguments
- determine variable names dynamically according to a string in fortran
- what is the purpose of * in fortran input/output
- looping over variable file names
- how do you use fortran 90 module data
- fortran intent(inout) versus omitting intent
- understanding lapack calls in c++ with a simple example
- proper use of modules in fortran
- are fortran control characters (carriage control) still implemented in compilers?
- allocatable arrays or pointer arrays?
- having parameter (constant) variable with nan value in fortran
- passing strings for execution in fortran subroutines
- skip a line from text file in fortran90
- are local variables in fortran 77 static or stack dynamic?
- fortran functions returning unexpected types and values
- why is the type not accessible?
- fortran array automatically growing when adding a value
- writing multiple output files in fortran
- variable format
- how to declare an array variable and its size mid-routine in fortran
- fortran function in a module not found by subroutine in the same module
- is fortran unable to do the addition between 865398.78 and -865398.78? why the answer is -0.03?
- syntax error when using caret for exponentiation
- scipy build/install mac osx
- why define pi = 4*atan(1.d0)
- do fortran 95 constructs such as where, forall and spread generally result in faster parallel code?
- best way to write a large array to file in fortran? text vs other
- confusing double precision real in fortran
- what is the explicit difference between the fortran intents (in,out,inout)?
- can not install gfortran via homebrew
- how to force numpy array order to fortran style?
- lgfortran not found
- is it possible to map a discontiuous data on disk to an array with python?
- difference between local allocatable and automatic arrays
- unexpected data declaration error in fortran when creating array
- wrong result when using a global variable in fortran
- standard input and output units in fortran 90?
- including a compiled module in module that is wrapped with f2py (minimum working example)?
- why compile to an object file first?
- how can gfortran tell if i am compiling f90 or f95 code?
- how to check if fortran array contains value?
- specify directory where gfortran should look for modules
- fortran, passing allocatable arrays to a subroutine with right bounds
- fortran 2003 / 2008: elegant default arguments?
- fortran forall restrictions
- r & fortran call
- mpi fortran code: how to share data on node via openmp?
- getting free unit number in fortran
- calling fortran subroutines with optional arguments from c++
- binary search efficiency vs. linear search efficiency in fortran
- compile fortran module with f2py
- calling fortran dll from c# and assigning values to array of structures
- how to pad fortran floating point output with leading zeros?
- extended double precision
- module or main program array must have constant shape error in fortran
- reading input files in fortran
- calling c++ from fortran (linking issue?)
- openmp private array - segmentation fault: 11
- creating heterogeneous arrays in fortran
- when is array deallocating necessary?
- allocate dynamic array with interdependent dimensions
- gfortran pre-processor directives for different operating systems
- does minloc work for arrays beginning at index 0? (fortran 90/95)
- long ints in fortran
- integer output formatting with print statement
- ifort and out of bound index - odd behaviour
- “__gfortran_pow_c8_i4” error when linking .o files from g++ and gfortran using g++
- can the shape of an array in an interface match multiple fixed array size?
- error in if-statement, requires scalar logical expression
- does fortran have undefined behavior?
- is it necessary to check an optional argument before passing it to another optional argument?
- access elements of returned array in fortran
- error: non-numeric character in statement label at (1)?
- openmp several “shared”-directives?
- read fortran formatted numbers with python
- size of array after a deallocate
- how to use a user-defined-type in a fortran interface
- pass fortran 77 function to c/c++
- puzzling performance difference between ifort and gfortran
- makefile with different source types
- how to get the name of a file acting as stdin/stdout?
- how to get rid of unwanted spacing in fortran's print output?
- fortran parameter variable initialized from input
- initilalising an array with a sequence in fortran
- includes revealing with fortran preprocessor
- when does a module go out of scope in fortran 90/95?
- can cpp preprocessing statement in fortran be indented?
- is the storage of complex in fortran guaranteed to be two reals?
- what is the effect of passing an allocatable variable into a subroutine with non-allocatable argument?
- how to pass a function with multiple arguments to a subroutine that expects a function with only one argument?
- print and write in one line?
- mpi fortran compiler optimization error
- unrecognized token '&' in fixed fortran continuation lines
- assumed string length input into a fortran function
- dynamic output format setting
- strange function call behavior
- ambiguous reference to variable
- finding specific indices with pointer array
- why is the counter variable unexpectedly increased in every subroutine call?
- incorrect/inconsistent results from zgeev() lapack
- precision of real variable
- embed python into fortran 90
- in fortran 90, what is a good way to write an array to a text file, row-wise?
- fortran 90 resources? [closed]
- what does “%” mean / do in fortran?
- automatic ordering of object files “*.o” in a fortran makefile
- which is the diffeence between an interface block and a module procedure in fortran?
- still can't install scipy due to missing fortran compiler after brew install gcc on mac os x
- how to call a fortran90 function included in a module in c++ code?
- fortran 90 compiling issue: undefined reference to <modulename>
- what does => (equals greater than) mean in fortran?
- for three digit exponents fortran drops the 'e' in the output
- fortran function: pointer as actual argument and target as formal
- reading data from txt file in fortran
- how can i implement a linked list in fortran 2003-2008
- fortran-c interoperability and float arrays
- using a fortran module in r?
- fortran - allocatable array in subroutine
- how to add a shell command and use the result in a fortran program?
- huge fort.# files when running gfortran
- calling an internal subroutine inside openmp region
- is it possible to send data from a fortran program to python using mpi?
- associated pointers in derived type? gfortran vs. intel
- fortran runtime warning: temporary array
- testing floating point numbers equality
- what is the point of block in fortran?
- broadcast array multiplication in fortran 90/95
- mixed c++ and fortran linking issue
- how to build or where to get an android ndk stand-alone toolchain supporting fortran?
- pointers in pure functions
- passing an internal procedure as argument
- how to make some generic programming in fortran 90/95 working with intrinsic types
- function call stopping/hanging when containing a write-statement, but only when linking with certain libraries during compilation
- fortran interface to call a c function that returns a pointer to an array
- extract substring of fortran string array
- can i mimic multiple passed-object dummy arguments in fortran?
- number of lines of a text file
- iso_fortran_env or -fdefault-real-8 to promote reals to double precision
- gfortran and codeblocks issue with modules and multiple files
- resizing of multi-dimensional arrays when passed
- fortran: how do i allocate arrays when reading a file of unknown size?
- zero indexed array in fortran?
- fortran codes won't compile on mac with gfortran
- installing gfortran in linux as a user
- how to call a function in fortran that is defined in a separate file?
- fortran array rank for matmul intrinsic
- arrays of strings in fortran-c bridges using iso_c_binding
- how to use and verify quad precision in gfortran?
- suppressing line breaks in fortran 95 write statements
- “initial” statement / automatic constructor for a fortran derived type
- how to stop a fortran program abnormally
- what is a good way to get file size in bytes using fortran?
- how to do a fftw3 mpi “transposed” 2d transform if possible at all?
- how to allocate an array inside fortran routine “called” from c
- how to pass character array into string
- concise notation for inheriting size from other array?
- preserve bounds in allocation in intrinsic assignment
- why is this attempt to pass a pointer from c++ to fortran not working?
- reading a sequence of integer in a line with unknown bound in fortran
- gfortran error: unexpected element '\' in format string at (1)
- include both .f and .f90 file in fortran main file header
- is there a limit to the number of arguments passed to a fortran function?
- error: if selector expression in select type is not a named variable, associate-name=> shall appear
- openmp no threading in subroutine
- fortran order of operations for exponents
- how do i print extremely small double precision numbers with fixed format in fortran?
- how can i make gfortran or ifort tell me when it implicitly promotes a real(4) to a real(8)?
- fortran functions with a pointer result in a normal assignment
- function result has no implicit type
- reading fortran unformatted file with python
- simple program, that only produce zeros, bug?
- how to reverse a chain of characters?
- fibonacci numbers becoming negative after a certain term
- a fortran timing issue i cannot understand
- unable to pass array from fortran to c
- syntax error in call statement in fortran
- about using fortran function in c with iso_c_binding
- cannot detect file existing or not
- fortran: reading a row of numbers into an array
- compiling with clang and gfortran
- how to use gfortran for fortran 90 with .for file extension?
- segfault with -fopenmp for a trivial program
- how to read variables of unknown width?
- fortran formated output for floating point numbers
- reading multiple files in fortran
- fortran type missmatch calling function
- writing robust and “modern” fortran code
- call functions from a shared fortran library in python
- how can i visualize fortran (90 or later) source code, e.g. using graphviz?
- purpose of lda argument in blas dgemm?
- why is the gcc math library so inefficient?
- fortran procedure pointer to subroutines in derived type
- cholesky decomposition scalapack error
- how do i pass a 2d array in c++ to a fortran subroutine?
- fortran do loop, warning to use integer only
- how to write a huge matrix to file row by row (fortran 90)
- cython and fortran - how to compile together without f2py
- is gcc's asm volatile equivalent to the gfortran default setting for recursions?
- how can i ensure that my fortran forall construct is being parallelized?
- os x package installation issue: can't find gfortran 4.8 to build package
- what is the difference between “stop” and “exit” in fortran?
- can random number generator of fortran 90 be trusted for monte carlo integration?
- fortran matrix multiplication performance in different optimization
- how do i format a print or write statement to overwrite the current line on the console screen?
- overloaded fortran interface with different ranks
- thread-safe uniform random number generator
- fortran dynamic libraries, load at runtime?
- the name of a subroutine can be a variable in fortran?
- implicit do loop array initialization
- allocatable character variables in fortran
- how to compile python scripts for use in fortran?
- automatic array deallocation in fortran
- fortran: handling integer values of size: ~700000000000
- different character lengths (3/4) in array constructor, how to trim strings - fortran
- reading fortran double precision format into python
- how to write without a newline in fortran?
- subroutine argument with unknown rank (shape) in fortran
- a fortran analog to python's super()?
- return string from fortran to c++
- user defined constructor for fortran derived type instance
- vim doesn't recognize columns beyond 72 with fortran90 code
- array of arrays in fortran
- array declared only on root process
- opening multiple files in fortran 90
- binary vtk for rectilinear_grid from fortran code
- c equivalent to fortran namelist
- gfortran: treat pure functions as normal functions for debugging purposes?
- “saving” a common block
- read text file line by line but only specific columns
- are there any problems with using jagged-arrays in fortran with multiple levels of allocation?
- passing string to fortran dll using ctypes and python
- segmentation fault created by fortran if tests
- find available graphics card memory using fortran
- fortran modules' subroutine name conflict
- openmp f90/95 nested do loops - problems getting improvement over serial implementation
- write output to txt file with fortran77 without column width limit
- compiling a fortran program under cygwin/gfortran gives “undefined reference to `_winmain@16'”
- reading bad values from binary file in fortran with a defined input procedure
- hexadecimal constants
- best practice when working with double precision magic numbers
- converting data stored in fortran 90 binaries to human readable format
- gfortran requires format widths while ifort doesn't?
- installing gfortran in cygwin: gfortran: cyglto_plugin.dll not found
- how to declare pointer-of-pointer using iso_c_binding?
- how to initialize a large array in fortran?
- 2d array concatenation in fortran
- is it possible to make isnan() work in gfortran -o3 -ffast-math?
- puting derived types with procedures from module to submodule
- storing a variable with a multi-dimensional index in fortran
- mpi not running in parallel in a fortran code
- allocating memory in c for a fortran allocatable
- fortran non advancing reading of a text file
- fortran 90 difference between compaq visual fortran and gfortran
- calling c code from fortran
- simple way to implement a group of queues in fortran?
- implementing getarg subroutine call
- invalid character in name at (1) with fixed-form source
- integration of bessel functions in c++/fortran [closed]
- ieee_arithmetic intrinsic module in gfortran
- fortran splats my output to asterisks - why?
- fortran - setting kind/precision of a variable at run time
- is there anything wrong with passing an unallocated array to a routine without an explicit interface?
- using array member as the control variable of do loop in fortran
- tool for program statistics
- what happens when calling external an fortran function with the wrong type of arguments?
- keeping array limits in fortran during subroutine call
- using all variables in a module, except for one - is there an opposite of “only”?
- jna with fortran assumed size array
- apparently not able to append a string to another
- fortran unformatted output with each mpi process writing part of an array
- cpp/gpp in fortran variadic macro (plus fortran // concatenation)
- how can i make the loop counter not be greater than the final value?
- difference between fortran 90 and fortran 95
- floating point exception when reading real values from an input file
- index multiple non-adjacent elements of a fortran array
- sum of a two dimensional array
- independent cdll library instances with ctypes
- fortran pointers to structures
- fortran, best use of dimension when initializing array with parameter attribute
- if or function pointers in fortran
- this fortran code shouldn't compile. is there a reason why it does?
- what does data inf/1.d+300/ mean in fortran?
- what is an assumed length character function result, and why should it be avoided?
- intrinsic assignment of scalar to array
- deferred-length character variable causing memory leaks depending on the optimization level
- error: invalid character in name at (1)
- ambiguous interface when using optional arguments in gfortran
- how to choose the best configuration of 2d array a(i,j)
- array declaration in fortran for beginners
- how to print in a single row in a loop?
- intrinsic function to convert integers to real(16)
- calling a c function from fortran where the c function name was originally passed in from c
- “unclassifiable statement” when referencing a function
- linker errors with fortran to c library - /usr/lib/libf2c.so: undefined reference to 'main__'
- restart a loop in fortran
- modern fortran: calling an ancestor procedure from descendent
- calling a subroutine in fortran (segmentation fault)
- what is the equivalent type in c for real(kind=real_normal) in fortran?
- what's the meaning of “iostat” argument in open statement?
- obtaining current host name from cray fortran
- overwrite a file using fortran
- segmentation fault when trying to write a fortran wrapper around two c objects using f2py
- parallel simulation gives different results after some time steps when compared with serial and additional parallel runs
- share allocatable arrays
- linking to modules folder gives undefined reference
- fortran: array of arbitrary dimension?
- is fortran 2008 backwards compatible with previous fortran versions?
- calling c++ function from fortran not c
- subroutine with array element as argument
- reading default output of fortran in python
- how do i compile this fortran code with new 2017 ifort?
- evaluate a function using a loop fortran 90
- read on closed named pipe blocks
- problems with parametrized derived types in fortran 2003
- what does the [reference] tag do in an argument declaration?
- extraneous output when using an unlimited format item
- blas with symmetry in higher order tensor in fortran
- converting character string to integer
- write in array format in fortran
- passing additional arguments in newton’s method in fortran
- how to assign a pointer to a diagonal of a matrix?
- reading a file with fortran formatted small floats, using numpy
- fortran 95 rounding up on it's own
- run fortran exe in java
- undefined reference to 'd1mach_'
- fortran pointer encompassing multiple arrays
- displaying a table with two columns in fortran with available data
- can i return a value from a function prematurely in fortran?
- error: expected a right parenthesis in expression at (1)
- forrt1: severe (170): program exception -
- handling reals in fortran together with r
- how to build mpich with gfortran-10?
- fortran : check data format while reading data with 'read'
- i want to implement a small and fast qualitative data type in fortran
- array of unknown rank as subroutine argument
- passing an array to a subroutine that expects a different shape
- how to read fortran formatted numbers in c++
- passing an allocatable character to a subroutine with unlimited polymorphic dummy argument in fortran
- no output after compiling and executing the code
- in fortran2003, is 1d assumed shape array interoperable with c?
- blas, atlas, lapack shared library minimal example
- with openmp parallelized nested loops run slow
- binary vtk for rectilinear_grid from fortran code can not worked by paraview
- why does the second if-clause even execute?
- compilation error: invalid character in name at (1)
- calling c++ function from fortran in visual studio 2010
- mysterious associated behavior compiled with gfortran
- how to avoid declaring and setting the value of a variable in each subroutine?
- fortran binary output bigger than expected
- list the content of a directory specified by loop indices
- fortran pass character*81 array to c/c++ code
- performance of fortran matrix operations
- do these 2 lines of fortran represent a fortran macro?
- resolving procedure confusion when using oop
- getting wrong results when exponentiating large integers
- integer, do loop, fortran, error
- correct implementation of an explicit interface in fortran
- secant method solving for pipe diameter
- does my code with derived type pointers leak memory?
- assigning a value to a variable passed to a function causes a segmentation fault.
- how to get a module with different type for code reuse?
- fortran compiler warning: obsolete arithmetic if statement
- fortran allocatable array lifetime
- go to statements- fortran to matlab
- fortran find string in txt file
- getting the ith permutation of a list
- how to format an integer to have only the needed size?
- why is fortran used for scientific computing? [closed]
- best fortran ide [closed]
- not sure what should be shared or private in openmp loop
- shared library in fortran, minimal example does not work
- vim highlighting weird parts of fortran
- overloading functions with fortran
- fortran 90/95 library for sparse matrices?
- dexp or exp for exponential function in fortran?
- how to access (dynamically allocated) fortran arrays in c
- convert a libc backtrace to a source line number
- private function in fortran
- tips and tricks on improving fortran code performance [closed]
- why does a fortran pointer require a target?
- why the unit test frameworks in fortran rely on ruby instead of fortran itself?
- what is the internal representation of inf and nan?
- r nlminb what does false convergence actually mean?
- how to install libgfortran.so.4 on ubuntu 16.06
- performance comparison fortran, numpy,cython and numexpr
- fortran allocate/deallocate
- fortran compilation error - undefined reference
- array of strings in fortran 77
- how to combine two strings in fortran
- does fortran have inherent limitations on numerical accuracy compared to other languages?
- error in linking gfortran to lapack and blas
- how to get started with fortran on a mac?
- integrating fortran code in julia
- save command line output to variable in fortran
- iso_c_binding calling c routine with pointers from fortran with arrays
- gdb debugger in mpi
- fortran read input into dynamic array
- why does cobol have to be indented? [closed]
- what's the overhead of passing python callback functions to fortran subroutines?
- how to write a regular expression to match a string literal where the escape is a doubling of the quote character?
- nested derived type with overloaded assignment
- sockets programming gfortran
- assertions in fortran
- calling fortran subroutine from julia. arrays work, but integers don't
- reading a comma-delimited text file line-by-line in fortran
- compiling a fortran .dll on windows 7 (for free)?
- eclipse with intel fortran debugger
- do we still need subroutines? [closed]
- link osx homebrew gfortran against libc++
- element-wise operations in c++
- linking fortran module: “undefined reference”
- better way to mask a fortran array?
- binary search in array issue using fortran
- call parallel fortran mpi subroutine from r
- how can i find out which library is home to a given object?
- optimization of a seven do cycle
- removing whitespace in string
- how to read fortran 77 unformatted binary file into python
- fortran reading mixed string and numeric data
- python reading unformatted direct access fortran 90 gives incorrect output
- how to generate fortran subroutine with sympy codegen
- calling fortran subroutine from c++ using intel compilers
- efficient z-order transformation in fortran
- fortran function variable length string return
- parameter list: meaning of parenthesis after name
- segmentation fault when passing a function as argument in a subroutine
- generate a matrix of possible combinations using fortran
- how can i find the cause for a memory leak in fortran 2003 program?
- friends-of-friends algorithm written in python need to be in fortran 90/95
- progress bar is not being written continuously in ifort while it is in gfortran
- how to use loadlibrary and getprocaddress from gfortran?
- blas ldb using dgemm
- how to break out of a nested parallel (openmp) fortran loop idiomatically?
- function which returns multiple values
- is fortran return statement obsolete?
- how to flush stdout in fortran 90?
- stringify macro with gnu gfortran
- check whether file has been opened already
- how to read an outputted fortran binary nxnxn matrix into python
- write data to file in columns (fortran)
- creating dll with gfortran on windows
- why no runtime error when clearly writing over array bounds?
- fortran reshape - n-dimensional transpose
- fortran precision default with/out compiler flag
- fortran write()
- pretty print fortran dynamic type in gdb
- what is the official way to deal with string in c++/fortran interop
- type bound procedure overloading in fortran 2003
- reading format in fortran 90
- fortran accepting string(?) from c
- how to initialize two distinct blacs contexts?
- slow random seed generator--why?
- ampersand in 5th column and at the end of the line
- gfortran: compiling 32-bit executable in 64-bit system
- how to call a c function in fortran and properly pass uint32_t arguments
- run a code in fortran multiple times with different input parameters
- fortran read mixed text and numbers
- how to convert 2d array to 1d array in fortran code?
- using minloc with fortran: incompatible ranks 0 and 1 in assignment
- memory location of fortran allocatable arrays on assigment?
- how to implement structures of arrays instead of arrays of structures in fortran?
- subroutine argument not passed correctly from python to fortran
- configuring lapack in eclipse-photran for fortran compiler on windows
- using iso_fortran_env to set a function's kind value
- does fortran 2003 implementation of deferred bound procedure requires same argument?
- modern fortran: output format without label
- embedding fortran in python with f2py
- automatic dependency detection not working in gfortran
- how to show build results in osx terminal from sublime text 2
- use fortran-code in c
- fortran findloc intrinsic
- array of derived type: select entry
- fortran element wise multiplication of a matrix and a vector
- have a function in fortran return a reference that can be placed on the left-hand-side of an assignment
- how to call a fortran program from r
- index of array out of range
- compiling mixed c++/c code with fortran using visual studio 2013 and intel fortran
- with c_f_pointer is fortran array reshape in-place or not
- how can i setup linux to compile fortran code into windows binaries?
- how can i store 2 numbers in a 1 byte char?
- reading a file of lists of integers in fortran
- how to name output files, making it related to a variable (in fortran)?
- passing a dynamic 2d array from c++ to fortran and back
- type bound procedure as arguments
- c-fortran interoperability - derived types with pointers
- correct execution of final routine in fortran
- force explicit variable declaration with gfortran
- passing a fortran object to c and vice versa
- fortran: can you explain this formatting string
- how to pass single dimension array from fortran to c
- is it possible to declare a matrix as a derived type in fortran?
- code::blocks, how to put the linker option `-lstdc++` at the end of the compiler command?
- f2py: using openmp parallel in fortran fails
- errors in linking fortran code that imports a mat-file
- sorting in fortran, undefined reference to qsort_
- lower triangular matrix-vector product
- fortran save procedure as property in derived type
- fortran: open, form='(un)formatted', read
- binding threads to certain mpi processes
- how to optimize this fortran subroutine with many loops?
- using a c++ class object in fortran 77
- mixed programming: calling fortran from c
- common block and subroutine argument
- fortran openmp large array on eclipse; program crash
- problems calling fortran library from c++
- libtorch works with g++, but fails with intel compiler
- random failure of mpi fortran code
- fortran syntax for assignments
- insert a value changing shape in allocated vector fortran
- linking fortran and c++ objects files
- fortran performance when passing array slices as arguments
- partition a 2d array column-wise and use allgather
- private, save attributes for variables in fortran 90 modules
- what should i marshalas for character type in fortran?
- fortran character input at undefined length
- build random array, search and sort fortran
- problems with porting a fortran program from ubuntu to windows
- unable to implement mpi_intercomm_create
- overloaded functions returning pointers to a base type alongside an abstract interface in fortran 2003?
- send and receive operations between communicators in mpi
- fortran type conversions
- c preprocessor macro: concatenation (example for fortan90)
- mac dynamic library craziness (may be fortran only)
- explaining fortran write format
- gnuplot vector fortran
- type-bound function overloading in fortran 2003
- how to silence or suppress gfortran (or clang?) backend in conda?
- flush-to-zero in gfortran
- how to get command line arguments of unknown length in fortran?
- broadcast an array to different shape (adding "fake" dimensions)
- renaming symbols at compile time without changing the code in a cross platform way
- inline keyword gfortran
- difference between pointer and allocatable
- reshaping a numpy.array in fortran-contiguous order
- constructor of derived types
- fortran 90 differences in declaring allocatable array
- generic type-bound procedures with procedure arguments
- segmentation fault for array, but only if a component of a derived type
- memory issues while loading two native libraries containing same symbols
- fortran 95, array must have constant shape error
- gfortran equivalent of ieee_exceptions
- ifort suppress unused variable warning, leave all others intact
- modern fortran equivalent of an action statement shared by nested do and go to
- save attribute needed for fortran variables when only the c_loc address is returned to a c program?
- how to get the fortran sum command result to exceed 2^24 for single precision arrays
- openmpi ignored error: mca interface is not recognized
- "d" label in the first column, fortran 77
- is there ever a reason to write .eqv. .true.?
- writing r package that call fortran library
- variable length array in derived type
- assigning a character array in fortran
- is it possible to call a fortran interface from c++
- weighted sampling in fortran
- circular dependency between types in fortran module
- when do fortran module allocatable arrays go out of scope when loaded as a shared library?
- fortran, open mp, indirect recursion, and limited stack memory
- call fortran function from python with ctypes
- what is _io_wfile on a gprof output of a fortran code?
- how can a gnu fortran / openmp program set and retrieve the stacksize-var icv?
- gfortran linking flag for openmp
- generic and specific functions to get real and imaginary parts of complex variables
- how to implement a = sparse(i, j, k) (sparse matrix from triplet) in a fortran mex file?
- linear indexing of multi-dimension arrays in fortran
- fortran 90 doesn't keep lower/upper array bounds after copy to another allocatable array
- equivalent to asm volatile in gfortran?
- variable length argument list in fortran?
- is lldb working with fortran?
- fortran dll import
- dependency walker not showing all the depended dll
- link f2py generated *.so file in a python package using setuptools
- can free-format code be included in fixed-format code?
- identify operating system
- when do i have to use contains in a module?
- fortran: add column to file (i.e. skip a varying amount of horizontal spaces)
- fortran function explanation
- how to use intel fortran compiler with mkl on command line
- no lifting of scalar arguments to arrays in fortran
- how to stop a subroutine and raise a flag?
- how are these double precision values accurate to 20 decimals?
- cabs(x) function for complex(8)
- why do i have to specify implicitly for a double precision return value of a function in fortran?
- effect of `use` on performance
- passing arrays as smaller than they actually are