Co-arrays and gfortran ?1103 (9/25/2012 10:44:39 PM) Trying to find out more about the status of gfortran and co-arrays. Is this=
something that will arrive anytime soon? =20
Also, I've noticed that the HPF group at Rice University is promoting somet=
hing ... john.chludzinski(61)
Single element of MATMUL result?281 (9/25/2012 9:03:30 PM) A is an NxN matrix, and x is a N-vector. Is there a simple way to get a single i-th element, a, of Ax? What I am doing now is
REAL, DIMENSION(123) :: bVector
bVector = MATMUL(A, x)
a = bVector(i)
but th... ols6000(18)
Generalizing a call for 1,2,and 3-d arrays.959 (9/19/2012 6:48:12 PM) I am using a set of C++ sparsematrix routines to represent sparse matrices =
in Fortran. I also have a toggle to switch between the Fortran arrays (ie.=
full) and the sparse functions. Trouble is that refe... acferrad9905(7)
WHy Fortran SELECT statment has an extra CASE at the top?74105 (7/24/2012 10:07:55 AM) I am newbie and learning a bit of Fortran, and noticed that Fortran
SELECT is kind'a strange. Why the duplicate use of CASE at the top
and also in each branch?
------------------------------
SELECT CASE(n... Nasser
The 64-bit Universal RNG177 (9/19/2012 7:28:37 AM) Marsaglia's procedure (below) produces 64-bit PRNs in floating-point.
Re: Double precision random number generator in Fortran 77
Posted: Nov 18, 2005 7:41 PM
George Marsaglia wrote:
> <os2_user@hotmail.... robin.vowels(428)
Fortran: matching real numbers675 (9/16/2012 6:18:39 AM) hi, i am an undergrad student workin on my thesis in CFD. i need some help in developing a fortran code similar to one posted for matching data for matching integer data
i have one data set (X Y Z A)
2165... jason_paul(1)