title Subroutine

public subroutine title(label, color)

Arguments

Type IntentOptional AttributesName
character(len=*), intent(in) :: label

Label for plot

character(len=*), intent(in), optional :: color

Color of labels

Description

Set plot title

Calls

proc~~title~~CallsGraph proc~title title plmtex plmtex proc~title->plmtex
Help

Called By

proc~~title~~CalledByGraph proc~title title proc~doplot doPlot proc~doplot->proc~title program~examples_prg examples_prg program~examples_prg->proc~doplot
Help

Source Code

	subroutine title(label,color)
		!! Set plot title
		character(*),intent(in)::label
			!! Label for plot
		character(*),intent(in),optional::color
			!! Color of labels
		
		if(present(color)) call setColor(color)
		call plmtex('t',1.5_pp,0.5_pp,0.5_pp,label)
		call resetPen()
	end subroutine title