Interface for matrix printing function
Output a 1D-matrix of real in a well formatted way
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(in) | :: | trans |
It the matrix is transposed or not |
||
character(len=*), | intent(in) | :: | label |
Label to be printed before the matrix |
||
real(kind=rp), | intent(in), | dimension(:) | :: | matrix |
Matrix to be printed |
|
integer(kind=ip), | intent(in), | optional | :: | ofunit |
Unit where the matrix should be printed, if not present iof_mmpol is used. |
Output a 2D-matrix of real in a well formatted way
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
logical, | intent(in) | :: | trans |
It the matrix is transposed or not |
||
character(len=*), | intent(in) | :: | label |
Label to be printed before the matrix |
||
real(kind=rp), | intent(in), | dimension(:, :) | :: | matrix |
Matrix to be printed |
|
integer(kind=ip), | intent(in), | optional | :: | ofunit |
Unit where the matrix should be printed, if not present iof_mmpol is used. |