contour Subroutine

public subroutine contour(x, y, z, nx, ny, levels, nlevels)

Python-accessible contour function

Arguments: x, y: Grid coordinate arrays z: 2D data array for contouring nx, ny: Array dimensions levels: Optional contour levels nlevels: Number of levels

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), dimension(nx) :: x
real(kind=wp), intent(in), dimension(ny) :: y
real(kind=wp), intent(in), dimension(nx, ny) :: z
integer, intent(in) :: nx
integer, intent(in) :: ny
real(kind=wp), intent(in), optional, dimension(:) :: levels
integer, intent(in), optional :: nlevels