Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Fortran 中,如果结果为正,则 dim(x,y) 返回差 xy;否则返回零。它的用途是什么?dim这个名字背后的含义是什么?
大概它来自维度,即某物的长度、宽度、高度。由于这些值都不能为负,因此将其计算为正差。
因为它(在一些关于 Fortran 的旧文献中)被定义为 DIM(A,B):=A-MIN(A,B),所以我想说这个名称只是“与最小值的差异”的缩写。