Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/fortran/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Fortran 90中数组的维数_Fortran - Fatal编程技术网

Fortran 90中数组的维数

Fortran 90中数组的维数,fortran,Fortran,在Fortan 77中,数组最多可以是7维的。Fortran 90中仍然存在此限制吗?我在网上找到的教程中找不到关于这个主题的任何内容。此外,Fortran 90的最大排名限制为7。Fortran 2008将此级别提高到最大15级 另见第4页: 最高等级已增加到15级。在同列的情况下,15的限制适用于秩和秩的和 Fortran 2008中的限制是15减去corank,而不是15。也就是说,一个数组的秩可能为15,但并非所有数组都有秩15。@francescalus感谢您指出这一点。我延长了我的回

在Fortan 77中,数组最多可以是7维的。Fortran 90中仍然存在此限制吗?我在网上找到的教程中找不到关于这个主题的任何内容。

此外,Fortran 90的最大排名限制为7。Fortran 2008将此级别提高到最大15级

另见第4页:

最高等级已增加到15级。在同列的情况下,15的限制适用于秩和秩的和


Fortran 2008中的限制是15减去corank,而不是15。也就是说,一个数组的秩可能为15,但并非所有数组都有秩15。@francescalus感谢您指出这一点。我延长了我的回答。