ylim Subroutine

public subroutine ylim(yl, yh)

Arguments

Type IntentOptional AttributesName
real(kind=wp), intent(in) :: yl
real(kind=wp), intent(in) :: yh

Description

Set the limits of the y-axis

Calls

proc~~ylim~~CallsGraph proc~ylim ylim plgvpw plgvpw proc~ylim->plgvpw plwind plwind proc~ylim->plwind
Help

Variables

TypeVisibility AttributesNameInitial
real(kind=pp), public :: x1
real(kind=pp), public :: x2
real(kind=pp), public :: y1
real(kind=pp), public :: y2

Source Code

	subroutine ylim(yl,yh)
		!! Set the limits of the y-axis
		real(wp),intent(in)::yl,yh
		
		real(pp)::x1,x2,y1,y2
		
		call plgvpw(x1,x2,y1,y2)
		call plwind(x1,x2,real(yl,pp),real(yh,pp))
	end subroutine ylim