Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged fortran90

0 votes
450 views
1 answer
    I'm writing a code with Fortran 90 and now I need to use the special functions in the*amos Fotran 77 library( ... long and it was a disaster. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
383 views
1 answer
    Can someone explain what is zero indexed array in Fortran along with example. I'm not getting any content on that on internet. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
336 views
1 answer
    I am using some F77 fixed format code with my F90 program. I am trying to include both kinds of code ... Composer XE 2013 with command prompt. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
318 views
1 answer
    I read about statement functions, such as the example: C(F) = 5.0*(F - 32.0)/9.0 Isn't this the same ... do I need to use a statement function? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
328 views
1 answer
    When an exception occurs I would like to terminate abnormally my program. Right now, when an exception ... allocatable arrays in fortran. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
296 views
1 answer
    I'm new to Fortran. I was given a file that is supposed to be in Fortran 90, but written to be compiled with the ... .8,254.6,208.8,202.8/) See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
303 views
1 answer
    I have a FORTRAN code with a routine: SUBROUTINE READ_NC_VALS(NCID, RECID, VARNAME, VARDATA) integer ncid, recid ... ; I just work here. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
315 views
1 answer
    I would like to program some procedure that will work with different types. I am planning to use the "include" ... of the data copy) Tanks! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
456 views
1 answer
    I am trying to read some Fortran code, but can not determine what the % (percentage sign) does. It is in a line ... a%rho+g)) What does it do? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
512 views
1 answer
    I want to copy a file from a folder and write at specific lines of the file using fortran. I am using Windows, ... file? but couldn't help me. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
281 views
1 answer
    I am writing the following simple routine: program scratch character*4 :: word word = 'hell' print *, concat ... Why will they not concatenate? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
439 views
1 answer
    Can I specify a format specifier for a complex number in fortran? I have a simple program. program complx1 implicit ... that can do the work. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
294 views
1 answer
    I'm learning the basics of Fortran. I created a simple subroutine initializing a matrix: program test integer, ... with gfortran 6.3.1 See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
235 views
1 answer
    Is there possibility to use indexing directly on a function's return value? Something like this: readStr()(2:5) ... other syntax to be used? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
275 views
1 answer
    I am playing around with f2py. I'm a bit confused about numpy intrinsic types vs. fortran 90 types. It ... gfortran fro all the above examples. See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
356 views
1 answer
    Heroes the new code I used. I have tried this, and it works if I have n declared first, which is not what ... i, x(i) ENDDO end program reading See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
348 views
1 answer
    Good practice dictates that subroutine arguments in Fortran should each have a specified intent (i.e. intent(in), ... older, intent free, code? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
669 views
1 answer
    In the code below I am adding together 865398.78 and -865398.78. I expect to get 0, but instead I get -0 ... of "read" codes or something else? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
832 views
1 answer
    Being new to Fortran 90 free-form, I would really like to know why the following piece of code snippet would not ... did I do wrong? Thanks, See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
473 views
1 answer
    In Fortran, there are two standard ways to return a result from a function. The first one is by ... was for introducing result variables? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
218 views
1 answer
    I have this function, depicted below. It passes in two vectors with three values each, and should pass out one ... for me to fix this error? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
254 views
1 answer
    I've read about the save statement in the (Intel's) language reference document, but I cannot quite grasp what it ... is included in a module ? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
To see more, click for the full list of questions or popular tags.
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...