indent existing file in vim364 (9/19/2012 10:27:49 AM) Its more a vim question then fortran.
When I write a new file, text get indented nicely. But that's not true,
if I paste a code snippet from existing file which is not
indented(obviously that takes the space... bnrj.rudra(343)
Non-elemental procedure, multiple possible ranks1263 (9/21/2012 12:31:52 AM) I was considering whether it's possible to write a procedure for multiple ranks without duplicated code, where an elemental procedure would be inappropriate. Here's a (mildly artificial) example of where this m... SeanSantos(2)
efficiency of allocatable array into derived type2462 (9/18/2012 10:35:17 AM) Hi all,
I have a serious problem with a derived into which is defined an allocatabl=
e array.=20
The derived type is defined as follows
type ineff
real, allocatable:: x(:)
real:: y
e... stefano.zaghi(9)
Unexpected result with OpenMP359 (9/21/2012 11:14:31 AM) Hello,
I was experimenting with a method to parallellize the inner loop of a program
without having to re-create a parallel section: the outer loop is a loop
describing the evolution over time, so that i... arjen.markus895(633)
Intel Fortran compiler not recognizing inherited variable10158 (9/19/2012 8:13:23 PM) In the following code, the compiler doesn't recognize kno as an inherited
variable.
$ % cat test.f
module test_m
contains
subroutine modtest
c integer :: kno, k2
cal... rages1(7)
Fortran: search for array value762 (9/17/2012 5:32:36 PM) hi, i have written following program
program test
implicit none
integer :: pn,en
integer :: i
real ,allocatable, dimension (:,:) :: y
integer,allocatable,dimension (:,:) :: ix
REAL ,DIMENSION (:)... harishameed_33(21)
Can't explain this?2950 (9/18/2012 1:23:30 PM) I've been translating some Runge-Kutta vibration analysis code from C
to Fortran 2003/08. Finally, I got it up and running - all was fine.
The C code and Fortran code were producing nearly identical numbers.... john.chludzinski(61)
"Implicit" use of assignment(=)2462 (9/15/2012 2:49:23 PM) Recently I noticed that overloaded assignment operator has no effect when i=
t is called "implicitly", in cases demonstrated by the following program:
module a_mod
type :: a
contains
procedur... pawel.biernat1(12)
big data help732 (9/19/2012 12:08:44 PM) I have a very big data set (.txt file) in which its components are characte=
rized as 1 and 2. Also i have m row including m individual and n column. In=
addition, each row has different number of 1 and 2, I... karimi.davood(4)