Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged fortran
0
votes
1.3k
views
1
answer
fortran - Allocatable array valued function. gfortran vs ifort
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)
fortran
0
votes
1.8k
views
1
answer
fortran - Line truncated, Syntax error in argument list
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)
fortran
0
votes
1.0k
views
1
answer
fortran - '*' and '/' not recognized on input by a read statement
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)
fortran
0
votes
980
views
1
answer
fortran - Why is this a function declared inside the module and then used somewhere else in the same module not seen by the linker?
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)
fortran
0
votes
1.4k
views
1
answer
fortran - Function has no implicit type
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)
fortran
0
votes
1.6k
views
1
answer
fortran - Output formatting: too much whitespace in gfortran
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)
fortran
0
votes
925
views
1
answer
fortran - Why should I use interfaces?
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)
fortran
0
votes
1.2k
views
1
answer
fortran - Why Segmentation fault is happening in this openmp code?
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)
fortran
0
votes
975
views
1
answer
fortran - MPI_Recv overwrites parts of memory it should not access
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)
fortran
0
votes
1.0k
views
1
answer
fortran - Function evaluation conflicting with other effects in statement
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)
fortran
0
votes
1.0k
views
1
answer
fortran - Evaluating a specific letter of a string defined in a derived type in Fortran90
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)
fortran
0
votes
1.1k
views
1
answer
fortran - Using a deferred-length character string to read user input
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)
fortran
0
votes
966
views
1
answer
fortran - Why does MPI_REDUCE returns a syntax error at compile time?
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)
fortran
0
votes
938
views
1
answer
fortran - Returning NaN in invalid operations (gfortran)
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)
fortran
0
votes
937
views
1
answer
fortran - Is there a portable way to select the size of a LOGICAL variable?
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)
fortran
0
votes
1.6k
views
1
answer
fortran - Unexpected data declaration statement
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)
fortran
0
votes
914
views
1
answer
fortran - Which compiler options to use with gfortran?
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)
fortran
0
votes
1.2k
views
1
answer
fortran - OpenMP segmentation fault after parallel region with 1 thread
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)
fortran
0
votes
1.1k
views
1
answer
fortran - Undefined reference when calling an external function of the same module
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)
fortran
0
votes
936
views
1
answer
fortran - Generic interfaces and operator overloading - how to set procedure from generic interface block to be private in module?
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)
fortran
0
votes
941
views
1
answer
fortran - Fortan suggestions needed on array values
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)
fortran
0
votes
969
views
1
answer
fortran - Making SUM function work with derived types
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)
fortran
0
votes
1.0k
views
1
answer
fortran - Making SUM function work with derived types
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)
fortran
0
votes
1.1k
views
1
answer
fortran - 将矩阵插入fortran(Inserting matrices into fortran)
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)
fortran
0
votes
1.1k
views
1
answer
fortran - 将矩阵插入fortran(Inserting matrices into fortran)
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)
fortran
0
votes
1.1k
views
1
answer
fortran - FORTRAN 77除以零行为(FORTRAN 77 Divide By Zero Behavior)
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)
fortran
0
votes
1.1k
views
1
answer
fortran - FORTRAN 77除以零行为(FORTRAN 77 Divide By Zero Behavior)
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)
fortran
0
votes
1.0k
views
1
answer
fortran - FORTRAN 77除以零行为(FORTRAN 77 Divide By Zero Behavior)
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)
fortran
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
Just Browsing Browsing
[1] react native - How to set Expo Web ScreenOrientation "landscape"?
[2] 张拉整体结构simulink建模
[3] Ts可以编译为指定版本的js,那么还需要babel么?
[4] javascript - Graph does not update automatically when the data is changed
[5] angular - How to make same http call on load and on keyup
[6] vue订阅发布者模式疑问
[7] 请问wed的视像头播放,挡住了自定义的弹窗,怎么解决
[8] react props解构传递,怎么修改部分并保持其他的不变?
[9] vue-cli3环境文件.env配置问题
[10] visualization - python upset plot data type unclear
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...