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 |
Set the x and y ranges of the plot
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
real(kind=pp), | public, | dimension(2) | :: | xbl | |||
real(kind=pp), | public, | dimension(2) | :: | ybl |
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