Warning: include_once(analyticstracking.php): Failed to open stream: No such file or directory in /Library/WebServer/Documents/tutorials/idl_tips/idl_common.php on line 27

Warning: include_once(): Failed opening 'analyticstracking.php' for inclusion (include_path='.:/usr/local/Cellar/php/8.1.1/share/php/pear') in /Library/WebServer/Documents/tutorials/idl_tips/idl_common.php on line 27
header photo

Exoplanets

Yale Astronomy

Interactive Data Language (IDL)

IDL Resources >> Helpful Tips

Global Variables in IDL: Common Blocks

Global variables are useful when it is not convenient to pass a variable from one function or procedure to another as an argument. In IDL, common blocks are used to declare global variables. The syntax is as follows:

COMMON block_name, var_1, var_2, ...

"block_name" is the name of the common block, and var_1, var_2 and so on can be any type of variable. The COMMON keyword must appear in every function or procedure where the variable(s) in question are needed. If a function or procedure using global variables is compiled after one where the common block is defined, a common block reference statement can be used:

COMMON block_name

Following the commom block definition or reference statement, the global variables can be used like normal variables. In different functions or procedures one can use different names for the global variables by changing the variables' names in the common block definition statement. For more information on common blocks, please look up "common blocks" in the IDL Online Manual.

 

Return to IDL Resources >> Helpful Tips