Fortran dim(x,y),目的是什么?
在 Fortran 中,如果结果为正,则 dim(x,y) 返回差值 xy; 否则返回零。 它的用途是什么? 暗淡这个名字背后的含义是什么?
In Fortran dim(x,y) returns the difference x-y if the result is positive; otherwise returns zero. What was it intended to be used for? What is the meaning behind the name dim?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据推测,它来自尺寸,即某物的长、宽、高。 由于这些值都不能为负,因此计算为正差。
Presumably it comes from dimension, i.e., the length, width, height of something. Since none of these values can be negative it's calculated as the positive difference.
因为它(在一些关于 Fortran 的旧文献中)被定义为 DIM(A,B):=A-MIN(A,B),所以我想说这个名称只是“与最小值的差异”的缩写。
Since it is (in some older literature on Fortran) defined as DIM(A,B):=A-MIN(A,B), I'd say that the name is just an abbreviation for "difference from minimum".