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 fortran

0 votes
1.0k views
1 answer
    Why is there different behavior between ifort and gfortran here? Compiled with ifort it returns false and with ... print *, allocated(a) See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.6k views
1 answer
    When I compile the program below, I have an error and a warning in the call Coor_Trans command line as ... E1 !return end subroutine Coor_Trans See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
838 views
1 answer
    I start learning Fortran and I'm doing a little case test program where the user types two real numbers and ... is ',res end program operateur See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
803 views
1 answer
    I have a function (in case anyone is interested, it is this function) in a module that looks like this ... is a character*-returning function? See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I am trying to learn to work with functions. I have the following code: program main implicit none write(*,*) ... at (1) has no IMPLICIT type See Question&Answers more detail:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.4k views
1 answer
    Using gfortran 4.6. This code: PROGRAM f1 IMPLICIT NONE INTEGER :: i=1, j=3 WRITE(*,*) "integer i ... + where you explicitly write any whitespace in the output. Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
752 views
1 answer
    Whenever I program in Fortran I use modules and I don't have to worry about writing interfaces. Now I'm ... someone explain me why? What are the benefit? Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.0k views
1 answer
    main program: program main use omp_lib use my_module implicit none integer, parameter :: nmax = 202000 real(8) :: ... without -openmp option, it runs fine too. Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
782 views
1 answer
    In the following code the value of xysize gets changed, if I do not declare it as a parameter (which I generally ... 2 size 4096 4096 1 received size 4096 5000 Question&Answers:os...
asked Oct 17, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
836 views
1 answer
    I would like to clarify my understanding of evaluation order in Fortran. Let's say I have a ... questions/65869750/function-evaluation-conflicting-with-other-effects-in-statement...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
861 views
1 answer
    This question already has answers here: question from:https://stackoverflow.com/questions/65877002/problems-with-getting-substrings-from-strings-in-fortran...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
865 views
1 answer
    I would like to use deferred-length character strings in a "simple" manner to read user input. The reason ... /65878466/fortran-error-when-i-enter-an-input-segmentation-fault...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
794 views
1 answer
    This question already has an answer here: question from:https://stackoverflow.com/questions/65879756/why-does-mpi-reduce-returns-a-syntax-error-at-compile-time...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
753 views
1 answer
    Is there a way to returning nan values instead of an error (compile or runtime) in invalid operations ... .com/questions/65915752/returning-nan-in-invalid-operations-gfortran...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
763 views
1 answer
    I know there is logical_kinds in iso_fortran_env, but there seems to be no equivalent of e.g. int32 or int64 for ... -a-portable-way-to-select-the-size-of-a-logical-variable...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.4k views
1 answer
    I'm writing a code for LU decomposition and I don't know how to fix the "unexpected data declaration ... 65943476/syntax-error-in-read-statement-in-fortran-while-reading-array...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
739 views
1 answer
    Closed. This question needs to be more focused. It is not currently accepting answers. question from:https:// ... com/questions/65943768/which-compiler-options-to-use-with-gfortran...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
937 views
1 answer
    I am trying to parallelise a do-loop in Fortran 90 for the code that looks as follows: !$OMP PARALLEL ... /65545495/openmp-segmentation-fault-after-parallel-region-with-1-thread...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
885 views
1 answer
    This question already has answers here: question from:https://stackoverflow.com/questions/65560146/undefined-reference-when-calling-an-external-function-of-the-same-module...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
741 views
1 answer
    My IDE is: Code::Blocks 20.03 ( MinGW 9.2.0 ) This is my code: module mod_kompleks use, intrinsic ... /generic-interfaces-and-operator-overloading-how-to-set-procedure-from-generic...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
756 views
1 answer
    I'm new to fortran and need some resources where I can start learning the basics. This problem ... stackoverflow.com/questions/65652134/fortan-suggestions-needed-on-array-values...
asked Oct 7, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
782 views
1 answer
    I have a user type which contains two or more arrays of different sizes. type state real(real64) :: ... .com/questions/66065400/making-sum-function-work-with-derived-types...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
845 views
1 answer
    I have a user type which contains two or more arrays of different sizes. type state real(real64) :: ... .com/questions/66065400/making-sum-function-work-with-derived-types...
asked Oct 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
871 views
1 answer
    How to insert matrices into fortran program? (如何在fortran程序中插入矩阵?)I have a script: (我有一个脚本:) program ... 00000000 0.00000000 9.00000000 20.0000000 ask by Moe translate from so...
asked Mar 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
871 views
1 answer
    How to insert matrices into fortran program? (如何在fortran程序中插入矩阵?)I have a script: (我有一个脚本:) program ... 00000000 0.00000000 9.00000000 20.0000000 ask by Moe translate from so...
asked Mar 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
939 views
1 answer
    I am working on re-engineering an old FORTRAN77 program to Python for a while now. (我正在一段时间内将旧的FORTRAN77程序重新设计为Python )I'm ... (分子也是零(例如0./0 )) ask by Dakota B translate from so...
asked Mar 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
867 views
1 answer
    I am working on re-engineering an old FORTRAN77 program to Python for a while now. (我正在一段时间内将旧的FORTRAN77程序重新设计为Python )I'm ... (分子也是零(例如0./0 )) ask by Dakota B translate from so...
asked Mar 6, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
862 views
1 answer
    I am working on re-engineering an old FORTRAN77 program to Python for a while now. (我正在一段时间内将旧的FORTRAN77程序重新设计为Python )I'm ... (分子也是零(例如0./0 )) ask by Dakota B translate from so...
asked Feb 21, 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

...