Fortran dim(x,y),目的是什么?

发布于 2024-07-18 04:59:54 字数 80 浏览 7 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

时光病人 2024-07-25 04:59:54

据推测,它来自尺寸,即某物的长、宽、高。 由于这些值都不能为负,因此计算为正差。

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.

你怎么敢 2024-07-25 04:59:54

因为它(在一些关于 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".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文