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
469
views
1
answer
fortran - Result of GAMMA underflows its kind
I would like to calculate gamma(-170.1) using the program below: program arithmetic ! program to do a calculation real ... x as I've defined it. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
461
views
1
answer
fortran - Using OpenMP critical and ordered
I've quite new to Fortran and OpenMP, but I'm trying to get my bearings. I have a piece of code for ... PARALLEL Thanks very much in advance! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
502
views
1
answer
fortran - Testing floating point numbers equality
I am using gfortran in MinGW under Windows 7 (32bit) to compile Fortran code. Here is the minimal code contained ... What is the problem here? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
493
views
1
answer
fortran - Associated pointers in derived type? gFortran vs. Intel
I would like to check if a pointer inside a derived type has already been defined or not. I wrote the ... thanks in advance for your help! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
608
views
1
answer
fortran - Function return type mismatch
I'm attempting to recode an old C++ program in Fortran to make use of LAPACK (I'm aware that C++ does ... this in Fortran is not an option. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
498
views
1
answer
fortran operator overloading: function or subroutine
I recently updated my .f90 code to .f03, and I was expecting to see speedup because my older version ... on this is greatly appreciated! See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
553
views
1
answer
fortran - precision of real variable
I have the following code in FORTRAN 77: REAL*8 :: dm dm=1.-1.E-12 write(6,*) 'dm: ', dm I get: ... OK? I would like to get dm=0.999999999999 See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
553
views
1
answer
fortran - What is the effect of passing an allocatable variable into a subroutine with non-allocatable argument?
Say we have this variable definition Real*8, Dimension(:), Allocatable :: dblA Allocate (dblA(1000)) Now I ... practice? Should I avoid this? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
487
views
1
answer
fortran - Puzzling performance difference between ifort and gfortran
Recently, I read a post on Stack Overflow about finding integers that are perfect squares. As I wanted to play ... looks like they fixed that. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
323
views
1
answer
fortran - Best practice when working with double precision magic numbers
Do I necessarily need to specify D (e.g., 1.234D+00) at the end of all magic numbers ( ... already declared everything double precision anyway? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
703
views
1
answer
fortran - Writing assumed-size array causes "upper bound shall not be omitted..."
I am writing code to add on a closed-source Finite-Element Framework that forces me (due to relying on some ... to an assumed size array. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
492
views
1
answer
fortran - Integer output formatting with print statement
I've noted that if I use integer(16) variables, when I use print, the output contains the exact number of ... Does anyone know why this occurs? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
500
views
1
answer
fortran - Strange Function Call behavior
I am quite new to Fortran and I was 'playing' with functions. I found a quite weird behavior in a very ... . What am I missing here? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
988
views
1
answer
fortran - Error: Rank mismatch in array reference at (1) (2/1)
I kindly request your help on this code where I kept on getting an error: Rank mismatch in array reference at ... 2 enddo enddo enddo return END See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
455
views
1
answer
fortran - How to pass a function with multiple arguments to a subroutine that expects a function with only one argument?
I have a subroutine (minimal example) subroutine treatfunction(f,input,output) external, real::f real, intent(in ... subroutine is not elegant. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
443
views
1
answer
fortran - Makefile with different source types
I am trying to write a makefile for compiling a program with source files with both .f and .f90 extensions. I ... with the .f files as well? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
495
views
1
answer
fortran - Size of array after a deallocate
I have created an allocatable array. I allocate the elements and then I print the size of the array. I find strange ... "fred: ", Size (fred) See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
769
views
1
answer
fortran - Error: Non-numeric character in statement label at (1)?
I wrote the following two lines in fortran C23456789 REAL H3 = 0 H3=H*H*H and I received the following ... current column used in the program. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
538
views
1
answer
fortran - Length-parameterized passed object to type-bound procedure has gfortran complain
I'm learning Fortran and I'd like to encapsulate an array and a subroutine in a type. The ... something regarding dummy argument definition? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
466
views
1
answer
fortran - OpenMP Several "shared"-directives?
Hey there, I have a very long list of shared variables in OpenMP so I have to split lines in fortran and use ... Any advices on how to do it? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
543
views
1
answer
fortran - Is it necessary to check an optional argument before passing it to another optional argument?
I have the following question concerning the usage of optional argument. Let's say I have the following routine ... Thanks for your help. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
441
views
1
answer
fortran - Is there anything wrong with passing an unallocated array to a routine without an explicit interface?
Consider: program main real, allocatable, dimension(:) :: foo integer n n=10 call dofoo(foo,n,1) allocate( ... behave in a system dependent way? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
767
views
1
answer
fortran - Dynamic function creation from another function
I have a Fortran 90 subroutine which takes a function as an argument, and I would like to pass a modified version ... be as hacky as you want. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
349
views
1
answer
fortran - Can the shape of an array in an interface match multiple fixed array size?
I have multiple subroutines with a parameter p which is an array of explicit size like subroutine foo(p) integer, ... on windows 7 64 bits). See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
649
views
1
answer
fortran - Missing explicit interface for subroutine
I just want to read a two-column text file with variable lines into an array. The first column of the text ... this error, thanks for any help. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
340
views
1
answer
fortran - Allocate dynamic array with interdependent dimensions
This is a bit complicated; I'd welcome any comments on how to improve the clarity of the question. Ok, ... derived type within a derived type? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
622
views
1
answer
fortran - Pointers in pure functions
In order to traverse a linked list in Fortran, I use a pointer to the current element that is moved to the ... that intent(in) is not violated? See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
0
votes
612
views
1
answer
fortran - Skip a line from text file in Fortran90
I'm writing in fortran (90). My program must read file1, do something with every line of it and write ... a combination of text and numbers. See Question&Answers more detail:os...
asked
Oct 24, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
fortran
Page:
« prev
1
2
3
4
next »
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] 用nodejs写的博客,文章列表的图片是从富文本里取的URL,然后直接拿着这个URL去跟服务器要原图了,请问这个图片能压缩吗
[2] 我是个前端开发者,现在想学习java或者说想学习怎么写接口,不知道从哪里开始入门,有没有推荐学习的资料或者视频
[3] ios - Struct 'State' cannot be used as an attribute
[4] nodejs的buffer数组中文编码是如何转换的?
[5] 输入正则表达式 匹配其他项
[6] python - How to detect the end of a crop row with opencv?
[7] quill.js复制word内容,样式丢失
[8] dockerfile - How to pass args to docker run for python?
[9] How do I dynamically set the path of a file Python?
[10] regex - PHP preg_match parser - How get uppercase letters
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
广告位招租
...