GET_FULL_MATRIX_DATA

Utility/Data Access SubroutineReturns the data from a full Reference_Matrix element. There is a separate function for the sparse Reference_Matrix element called GET_SPARSE_MATRIX_DATA.

Use

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

Format

Fortran Calling Syntax
CALL GET_FULL_MATRIX_DATA(id, vals, size, ierr)
C/C++ Calling Syntax
c_get_full_matrix_data(id, vals, size, ierr)
Python Calling Syntax
[vals, ierr] = py_get_full_matrix_data(id, size)
MATLAB Calling Syntax
[vals, ierr] = m_get_full_matrix_data(id, size)

Attributes

id
[integer]
Specifies the ID of the Reference_Matrix element.
size
[integer]
Specifies the size of the Reference_Matrix element.

Output

vals
[double precision]
A double precision array containing data from the Reference_Matrix element.
ierr
[integer]
An integer that specifies the status of the call to the GET_FULL_MATRIX_DATA as follows:
0
Normal return.
1
ID not found, call ignored.
2
The size does not equal the size of the Reference_Matrix.