core_scatter Subroutine

public subroutine core_scatter(plots, state, plot_count, x, y, s, c, marker, markersize, color, colormap, vmin, vmax, label, show_colorbar, default_color)

Add an efficient scatter plot using a single plot object Properly handles thousands of points without O(n) overhead

Arguments

Type IntentOptional Attributes Name
type(plot_data_t), intent(inout), allocatable :: plots(:)
type(figure_state_t), intent(inout) :: state
integer, intent(inout) :: plot_count
real(kind=wp), intent(in) :: x(:)
real(kind=wp), intent(in) :: y(:)
real(kind=wp), intent(in), optional :: s(:)
real(kind=wp), intent(in), optional :: c(:)
character(len=*), intent(in), optional :: marker
real(kind=wp), intent(in), optional :: markersize
real(kind=wp), intent(in), optional :: color(3)
character(len=*), intent(in), optional :: colormap
real(kind=wp), intent(in), optional :: vmin
real(kind=wp), intent(in), optional :: vmax
character(len=*), intent(in), optional :: label
logical, intent(in), optional :: show_colorbar
real(kind=wp), intent(in) :: default_color(3)