In Matlab, end
index lets me access a last item.
> array = [1 2 3 4 5 6 7];
> array(end)
ans = 7
How do I do the same in Fortran?
program hello
integer array(7)
array = (/1, 2, 3, 4, 5, 6, 7/)
!print *, array(end)
! 1
!Error: Legacy Extension: REAL array index at (1)
! print *, array(-1)
! 1
!Warning: Array reference at (1) is out of bounds (-1 < 1) in dimension 1
! print *, array(0)
! 1
!Warning: Array reference at (1) is out of bounds (0 < 1) in dimension 1
end program Hello
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…