Set the x and y ranges of the plot
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(2) | :: | xb | x-range of plot |
|
real(kind=wp), | intent(in), | dimension(2) | :: | yb | y-range of plot |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module.
subroutine xylim(xb,yb)
!! Set the x and y ranges of the plot
real(wp),dimension(2),intent(in)::xb
!! x-range of plot
real(wp),dimension(2),intent(in)::yb
!! y-range of plot
real(pp),dimension(2)::xbl,ybl
xbl = localize(xb)
ybl = localize(yb)
call plwind(xbl(1),xbl(2),ybl(1),ybl(2))
end subroutine xylim