Subroutine Type |
Utility/Data Access |
|||||||
Definition |
Returns 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. |
|||||||
Calling Syntax |
Fortran CALL GET_FULL_MATRIX_DATA(id, vals, size, ierr)
C c_get_full_matrix_data(id, vals, size, ierr)
Python [vals, ierr] = py_get_full_matrix_data(id, size)
MATLAB [vals, ierr] = m_get_full_matrix_data(id, size) |
|||||||
Input Arguments |
[integer]id |
Specifies the ID of the Reference_Matrix element. |
||||||
[integer]size |
Specifies the size of the Reference_Matrix element. |
|||||||
Output Values |
[double precision] vals |
A double precision array containing data from the Reference_Matrix element. |
||||||
[integer] ierr |
An integer that specifies the status of the call to the GET_FULL_MATRIX_DATA as follows:
|
See Also: