Tagged Questions
0
votes
0answers
54 views
Splitting up a large vector into many smaller vectors effectively (FORTRAN 95)
I've been writing FORTRAN 95 programs which involve very large vectors. gfortran refuses to compile these programs or windows refuses to run them depending on how I've declared the vectors because ...
0
votes
1answer
243 views
Fortran - double precision array error
Im trying to run a code for a mathematical algo (Conjugate Gradient method) - in doing so I input a double precision matrix, defined as such in my preamble. When compiling, I get the follow error:
...
1
vote
0answers
121 views
Reading file in Fortran-90 written out by Python f.write()
So someone wrote this code which outputs x,y,z positions of some particles.
if rs.contains_block(file+'.hdf5',"POS ",parttype=1):
d1 = rs.read_block(file, "POS ",parttype=1,verbose=False)
...
0
votes
1answer
298 views
fortran 90 Change array type/cast
Is it possible change the type (or copy) a double type array into a char?
My objective is mix accurate data with strings, and then write to .txt file.
With your tips, I reach this code:
Program ...
0
votes
0answers
249 views
Fortran 90 - Inverse Symmetric Band Matrix
I am currently learning Fortran and so far, I have been doing a great job and I thank the stackoverflow community for helping me with my progress.
I have a question regarding symmetric band matrices. ...
2
votes
2answers
251 views
Can MPI gather, reduce, send, or receive derived types in Fortran 90?
I want to copy a derived type xyzBuffer from processor 1 to xyz of processor 0. I attempted MPI_GATHER with:
call MPI_GATHERV(xyzBuffer,1,inewtype,xyz,1, dispGather,inewtype,0,icomm,ierr)
But ...
4
votes
2answers
1k views
How to pass allocatable arrays to subroutines in Fortran
The following code is returning a Segmentation Fault because the allocatable array I am trying to pass is not being properly recognized (size returns 1, when it should be 3). In this page ...
0
votes
1answer
51 views
fortran90: printing integer array in different structure
I've an integer array
int(4) :: idate ! 1979 March 1st 00hrs
write(*,*)idate ! prints ' 0 3 1 1979'
I want idate to be saved in a different variable (integer/integer array ...
3
votes
1answer
233 views
vectorize a loop which accesses non-consecutive memory locations
I have a loop of this structure
Reference : Maxwell Code Example
do z=1,zend
do y=1,yend
do x=1,xend
k=arr(x,y,z)
do while(k.ne.0)
ix=fooX(k)
...
5
votes
2answers
600 views
Deep array copy in Fortran
I need a deep copy of a (real) array in Fortran (90), but am not sure exactly how to get one, since I do not completely understand how references work. Intuitively, I would expect this to get me ...
0
votes
1answer
139 views
Fortran subroutine fails on return
I have a Fortran numerical code that calls a subroutine from an external module. This code has been running fine for me until I tried to compile and run on a different machine. On the new machine, ...
0
votes
1answer
209 views
Fortran90: array of pointer arrays defined as pointer (bug in ifort 11.1?)
I have one question and one problem (I think they are related).
question: Can I use in Fortran90 array of pointer arrays defined as pointer?
type string
character, pointer :: str(:)
end type
...
0
votes
1answer
339 views
Array storing in FORTRAN-90
I am using FORTRAN-90.
I have one problem.
I want to store data (i.e. X and Y values) in an three dimensional array (A(900,900,900),B(900,900,900)) in such a way that at begining I used only 30X30X30 ...
0
votes
1answer
216 views
min and max of input array file (.dat) with subroutine
I try to implement a code that read in a number n, creates a vector to store n double precision numbers, read this number, call a subroutine printminmax() to find min and max. My code work perfect for ...
0
votes
1answer
417 views
Fortran90 Type/rank mismatch in argument
I'm allocating the dimension of some arrays once I have calculated steps, then I send the allocated arrays to a function but I have the error Type/rank mismatch in argument 'a'.
What am I doing ...
3
votes
1answer
245 views
Arrays of pointers
I am trying to implement an array of pointers, so that I can loop over the elements. However I am not sure how to do this correctly:
TYPE(domain),POINTER :: d01,d02,d03
...
1
vote
2answers
2k views
How to increase array size on-the-fly in Fortran?
My programme is running though 3D array, labelling 'clusters' that it finds and then doing some checks to see if any neighbouring clusters have a label higher than the current cluster. There's a ...
1
vote
2answers
142 views
What happens when I pass an array to a function/subroutine?
I had never thought about this before, but lately I've been worried about something. In Fortran90(95), say I create a really big array
Integer :: X(1000000)
and then I write a function that takes ...
0
votes
3answers
203 views
Operating elementwise on an array
I'm trying to check if my arrays are returning nonsense by accessing out of bounds elements, in fortran. And I want to check these values are less than one, and if they are, change them to one.
This ...
3
votes
1answer
1k views
Fortran:How to check if array contains value?
I've seen this asked for other languages, but having just found out how nicely fortran can handle arrays, I thought there might be an easy way to do this without loops.
Currently I'm searching over a ...
1
vote
2answers
1k views
Reading a two dimensional fortran90 array
I'm very new to FORTRAN!!
I'm trying to read a two diomensional array (30.7) from a external file as
READ(*,*)Fname
OPEN(UNIT=10, FILE=Fname, ACTION="READ")
DO i=1,30
...
0
votes
1answer
141 views
Fortran90 Array read blank values as null
I'm reading data fram a external text file (30 Rows, 7 Columns), each row is seperated with a ",". I have missing values represented as ",,". When i read data into a two dimensional array the missing ...
1
vote
1answer
1k views
Iterating over a FORTRAN character array
Ok, I'm having mucho trouble with the following Fortran 90 code. The program tester should create a character array called input, initialize all the entries to the space character, then get some ...
2
votes
1answer
1k views
passing assumed-shape arrays in two levels of subroutines (Fortran 90)
I have had problems calling successive subroutines with assumed-shape arrays in Fortran 90. More specifically, I call two levels of subroutines, passing an assumed-shape array as a parameter, but in ...
1
vote
3answers
288 views
function returning array with no defined explicit shape
I am wondering how to return an array from a function without any knowledge of the shape until runtime (including assumed shape arrays). I'll explain with examples. This works
module foo
contains
...
2
votes
3answers
319 views
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))
call bar(a)
print *, a
end subroutine
subroutine ...
0
votes
2answers
579 views
Fortran90 Error: EXTERNAL attribute conflicts with DIMENSION attribute
I've written a function which calculates the eigenvalues of a 2*2 matrix. It takes a 2*2 matrix as an argument and returns 2 eigenvalues via a 2-element array. I have declared the function in the ...
1
vote
5answers
1k views
define integer array fortran
I am a newbie in Fortran.
Can any1 tell me how to define an integer array in prior.
E.g.
I want to define an array with no.of days in 12 months.
like...
integer,allocatable(12,1) :: days
...