RELPAR

Utility/Data Access SubroutineRetrieves the user-defined work array data.

Use

The function can be called by any user-defined subroutine.

Format

Fortran Calling Syntax
CALL RELPAR(ID, RPAR, NSIZE, INFO)
C/C++ Calling Syntax
c_relpar(id, rpar, nsize, info)
Python Calling Syntax
[rpar, info] = py_relpar(id)
MATLAB Calling Syntax
[rpar, info] = m_relpar(id)

Attributes

ID
[integer]
Specifies a unique identifier for the data block.

Output

RPAR
[double]
An array of double precision values that contains the user-defined work array data.
NSIZE
[integer]
The size of the work array.
INFO
[integer]
A value that indicates the status of the call to RELPAR as follows:
0
Normal return.
1
ID not found, RELOAD ignored, NSIZE will be set to zero.
-1
Access violation in copying to R RPAR. You are responsible for making sure that RPAR is at least of size equal to NSIZE.

Comments

The ID used with RELPAR must match one of the IDs used in the SAVPAR user subroutine.