initialize_tick_arrays Subroutine

public subroutine initialize_tick_arrays(plot_width, plot_height, num_x_ticks, num_y_ticks, x_positions, y_positions, x_labels, y_labels)

Initialize tick count and allocate arrays

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: plot_width
real(kind=wp), intent(in) :: plot_height
integer, intent(out) :: num_x_ticks
integer, intent(out) :: num_y_ticks
real(kind=wp), intent(out), allocatable :: x_positions(:)
real(kind=wp), intent(out), allocatable :: y_positions(:)
character(len=50), intent(out), allocatable :: x_labels(:)
character(len=50), intent(out), allocatable :: y_labels(:)