Print vertical. More...
Go to the source code of this file.
Functions/Subroutines | |
| subroutine | pzvert (n, x) |
| Print vertical. | |
| subroutine | pivert (n, list) |
| Vertical print of integer data. | |
| subroutine | pfvert (n, x) |
| Vertical print of floating point data. | |
| subroutine | psvert (xa, xb) |
| Print scale. | |
Print vertical.
Definition in file vertpr.f90.
| subroutine pfvert | ( | integer, intent(in) | n, |
| integer, dimension(n), intent(in) | x | ||
| ) |
Vertical print of floating point data.
Print in up to 60 columns. Optionally average data.
| [in] | n | number of floats |
| [in] | x | array of floats |
Definition at line 200 of file vertpr.f90.
References pzvert().
Referenced by hmpdef().
| subroutine pivert | ( | integer, intent(in) | n, |
| integer, dimension(n), intent(in) | list | ||
| ) |
Vertical print of integer data.
Print in up to 60 columns. Optionally average data.
| [in] | n | number of integers |
| [in] | list | array of integers |
Definition at line 162 of file vertpr.f90.
References pzvert().
Referenced by hmpdef().
| subroutine psvert | ( | real, intent(in) | xa, |
| real, intent(in) | xb | ||
| ) |
Print scale.
| [in] | xa | lower bound of range |
| [in] | xb | upper bound of range |
Definition at line 232 of file vertpr.f90.
Referenced by hmpdef().
| subroutine pzvert | ( | integer, intent(in) | n, |
| real, dimension(n), intent(in) | x | ||
| ) |
Print vertical.
Print the array X of dimension N (MAX 120) in 6 lines.
| [in] | n | number of numbers |
| [in] | x | array of numbers |
Definition at line 15 of file vertpr.f90.
1.8.1