C Library Functions  - plot6 (3)

NAME

plot6(3f) - [M_datapac:GENERIC_LINE_PLOT] generate a line printer plot

CONTENTS

Synopsis
Description
Input Arguments
Output
Examples
Author
Maintainer
License

SYNOPSIS

SUBROUTINE PLOT6(Y,X,N,Ymin,Ymax,Xmin,Xmax)

DESCRIPTION

PLOT6(3f) yields a one-page printer plot of Y(i) versus X(i):
1. with the vertical (Y) axis min and max and the horizontal (X) axis min and max values specified by the data analyst.

the use of the YMIN, YMAX, XMIN, and XMAX specifications allows the data analyst to control fully the plot axis limits, so as, for example, to zero-in on an interesting sub-region of a previous plot.

INPUT ARGUMENTS

Y the vector of (unsorted or sorted) observations to be plotted vertically.
X the vector of (unsorted or sorted) observations to be plotted horizontally.
N the integer number of observations in the vector y. there is no restriction on the maximum value of n for this subroutine.
YMIN the value of desired minimum for the vertical axis.
YMAX the value of desired maximum for the vertical axis.
XMIN the value of desired minimum for the horizontal axis.
XMAX the value of desired maximum for the horizontal axis.

OUTPUT

A one-page printer plot of y(i) versus x(i), with specified axis limits.

EXAMPLES

Sample program:

   program demo_plot6
   use M_datapac, only : plot6
   implicit none
   ! call plot6(x,y)
   end program demo_plot6

Results:

AUTHOR

The original DATAPAC library was written by James Filliben of the Statistical Engineering Division, National Institute of Standards and Technology.

MAINTAINER

John Urban, 2022.05.31

LICENSE

CC0-1.0


Nemo Release 3.1 plot6 (3) July 22, 2023
Generated by manServer 1.08 from a60d71c8-d593-4649-b146-a53750dc3eee using man macros.