plot Subroutine

public subroutine plot(x, y, label, linestyle, color, linewidth, marker, markersize, alpha)

Plot x and y data with the active figure or subplot.

Parameters x : real(wp), contiguous, intent(in) X coordinates. y : real(wp), contiguous, intent(in) Y coordinates. label : character(len=), optional Legend label. linestyle : character(len=), optional Line style string. color : real(wp)(3), optional RGB line color. linewidth : real(wp), optional Line width override. marker : character(len=*), optional Marker style. markersize : real(wp), optional Marker size override. alpha : real(wp), optional Line transparency.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), contiguous :: x(:)
real(kind=wp), intent(in), contiguous :: y(:)
character(len=*), intent(in), optional :: label
character(len=*), intent(in), optional :: linestyle
real(kind=wp), intent(in), optional :: color(3)
real(kind=wp), intent(in), optional :: linewidth
character(len=*), intent(in), optional :: marker
real(kind=wp), intent(in), optional :: markersize
real(kind=wp), intent(in), optional :: alpha