plot6(3f) - [M_datapac:GENERIC_LINE_PLOT] generate a line printer plot
Synopsis
Description
Input Arguments
Output
Examples
Author
Maintainer
License
SUBROUTINE PLOT6(Y,X,N,Ymin,Ymax,Xmin,Xmax)
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.
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.
A one-page printer plot of y(i) versus x(i), with specified axis limits.
Sample program:
program demo_plot6 use M_datapac, only : plot6 implicit none ! call plot6(x,y) end program demo_plot6Results:
The original DATAPAC library was written by James Filliben of the Statistical Engineering Division, National Institute of Standards and Technology.
John Urban, 2022.05.31
CC0-1.0
Nemo Release 3.1 | plot6 (3) | February 23, 2025 |