DISPATCH
|
Module with which one can register any number of pointers to real or integer arrays, and then output the contents of the links later. More...
Data Types | |
type | aux_t |
Module with which one can register any number of pointers to real or integer arrays, and then output the contents of the links later.
USE aux_mod real, pointer:: a1(10), a2(11,12), a3(13,14,15) ... call auxregister ('a1', a1) call auxregister ('a2', a2) call auxregister ('a3', a3) ... call auxoutput ('test.aux')