Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

maximum allowable number of dimensions in a matrix ?

Status
Not open for further replies.

billgray1234

Programmer
Mar 14, 2011
39
i'm using fortran 90/95.
i'm using a lot of (multi-dimensional) matrices.
forgetting about program performance / efficiency / etc, is there a limit to the number of dimensions each matrix can have ?

for example, say i have

REAL, DIMENSION ( IA , JA , KA , ... , ) :: A

where IA, JA, KA, etc, are the dimensions of A. is there a maximum allowable number of dimensions that matrix A can have ? for example, if A can have no more than 5 dimensions, then i'd have

REAL, DIMENSION ( IA , JA , KA , LA , MA ) :: A
 
It was 7 in F66, F77, F90, F95 and F2003. But F2008 has extended that value to 15

François Jacq
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top