Node: gnuplot_plotslope, Next: gnuplot_plotequation2d, Previous: gnuplot_fitsurface, Up: Canned Routines
Plots the specified slope line.
BAD_SIGNAL : Called with a dissociated pointer.
interface
integer function gnuplot_plotslope(ptr_gctrl,a,b,slopetitle,&
xlo,xhi) result(status)
type(gnuplot_ctrl), pointer :: ptr_gctrl
real(dp), intent(in) :: a,b
real(dp), intent(in), optional :: xlo,xhi
character(len=*), intent(in) :: slopetitle
end function gnuplot_plotslope
end interface
|