program main
implicit none
integer :: ia(5),ib(9)
ia = [1,5,5,5,2]
ib = 0
ib(ia) = ib(ia) + [1,1,1,1,1]
write(*,*) ib
stop
end program
aa.jpg (15.14 KB, 下载次数: 600)
program main
implicit none
real :: ra_val1(11),ra_val2(11),ra_add(9)
integer :: ia_index(2,9)
integer :: i
ra_add = [0.014000,0.016500,0.016500,0.014000,0.014000,0.014750,0.014750,0.010750,0.010750]
ia_index(:,1) = [ 1 , 2 ]
ia_index(:,2) = [ 1 , 9 ]
ia_index(:,3) = [ 1 , 11 ]
ia_index(:,4) = [ 2 , 3 ]
ia_index(:,5) = [ 3 , 4 ]
ia_index(:,6) = [ 4 , 8 ]
ia_index(:,7) = [ 4 , 10 ]
ia_index(:,8) = [ 5 , 6 ]
ia_index(:,9) = [ 6 , 7 ]
ra_val1 = 0.
ra_val2 = 0.
! 写法1
do i=1,9
ra_val1(ia_index(1,i)) = ra_val1(ia_index(1,i)) + ra_add(i)
ra_val1(ia_index(2,i)) = ra_val1(ia_index(2,i)) + ra_add(i)
enddo
! 写法2
ra_val2(ia_index(1,:)) = ra_val2(ia_index(1,:)) + ra_add
ra_val2(ia_index(2,:)) = ra_val2(ia_index(2,:)) + ra_add
write(*,"(A6,2A12)") "No.","Val1","Val2"
do i=1,11
write(*,"(I6,2F12.6)") i,ra_val1(i),ra_val2(i)
enddo
stop
end program
aa.jpg (29.29 KB, 下载次数: 562)
fcode 发表于 2017-8-5 04:48
It's hard to check why ? May be we need more code !
temp = ia_index(1,:)
ra_val3(temp ) = ra_val3(temp ) + ra_add
program main
implicit none
integer :: ia(5),ib(9)
ia = [1,5,5,5,2]
ib = 0
ib(ia) = ib( ia (:) ) + [1,1,1,1,1]
write(*,*) ib
stop
end program
andy8496 发表于 2017-8-5 21:29
唉,我都忘了我哪些地方用了这种写法,但是肯定不止目前发现的这个位置。真是郁闷了!
要是能通过什么编译 ...
pasuka 发表于 2017-8-6 17:22
ia_index的第1行数据为啥非要设置重复元素?
andy8496 发表于 2017-8-6 18:30
这个是实际应用的需要。
pasuka 发表于 2017-8-6 21:28
症结即在于此呀,没有看出来?
aaa.jpg (15.14 KB, 下载次数: 318)
74.9 KB, 下载次数: 13
andy8496 发表于 2017-8-6 21:40
真看不出来。我试验用的那段代码,咋就能按照我的理解运行呢?索引数组也是有重复元素的:
program main
...
A many-one section must not appear on the left of the equal sign in an assignment statement or as an input item in a READ statement. The reason is that the result will depend on the order of evaluation of the subscripts, which is not specified by the language. The results would not be predictable and the program containing such a statement would not be portable.
setting.jpg (75.14 KB, 下载次数: 307)
andy8496 发表于 2017-8-7 14:52
多谢各位了!
现在补救的办法就是依赖编译器检查了,不知道可行否?在哪里设置?
array-expression-assignment.pdf
117.25 KB, 下载次数: 3
chiangtp 发表于 2017-8-7 16:16
你ˋ可能還需要考慮另一個問題:
维尼猴 发表于 2017-8-7 19:57
哇,学到好多~~
chiangtp 发表于 2017-8-8 00:02
http://pan.baidu.com/s/1i5l8Ypf
program main
implicit none
integer :: ia(5),ib(9)
ia = [1,5,5,5,2]
ib = 0
ib(ia) = ib(ia) + [1,1,1,1,1]
write(*,*) ib
stop
end program
欢迎光临 Fortran Coder (http://bbs.fcode.cn/) | Powered by Discuz! X3.2 |