我想在2D数组中找到元素最小值的位置。数组很复杂,第一维的第一个索引为零。但是,我想要使用大于零的索引搜索数组元素。我可以进行限制吗? 代码是:
Program Prvi
Implicit none
Integer,parameter::Ncv=3,Nsa=4
Complex::A(0:Ncv-1,Nsa)
..........
.........
! and after all calculation i want to find location of minimum element
Write(*,*) minloc(abs(A))
Stop
End program Prvi