streamplot Subroutine

public subroutine streamplot(x, y, u, v, density, linewidth, color, cmap, label, arrowsize, arrowstyle, colormap)

Stateful streamplot wrapper - delegates to OO interface

cmap matches matplotlib; colormap is a deprecated alias. linewidth controls streamline line width (matplotlib-canonical). color(3) sets a solid RGB color for all streamlines. arrowsize and arrowstyle control arrow glyphs on streamlines.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in), contiguous :: x(:)
real(kind=wp), intent(in), contiguous :: y(:)
real(kind=wp), intent(in), contiguous :: u(:,:)
real(kind=wp), intent(in), contiguous :: v(:,:)
real(kind=wp), intent(in), optional :: density
real(kind=wp), intent(in), optional :: linewidth
real(kind=wp), intent(in), optional :: color(3)
character(len=*), intent(in), optional :: cmap
character(len=*), intent(in), optional :: label
real(kind=wp), intent(in), optional :: arrowsize
character(len=*), intent(in), optional :: arrowstyle
character(len=*), intent(in), optional :: colormap