QPLOT connects data points with lines.
| The call is: | CALL QPLOT (XRAY, YRAY, N) | level 0, 1 |
| or: | void qplot (float *xray, float *yray, int n); |
| XRAY, YRAY | are arrays that contain X- and Y-coordinates. |
| N | is the number of data points. |
QPLSCA marks data points with symbols.
| The call is: | CALL QPLSCA (XRAY, YRAY, N) | level 0, 1 |
| or: | void qplsca (float *xray, float *yray, int n); |
| XRAY, YRAY | are arrays that contain X- and Y-coordinates. |
| N | is the number of data points. |
QPLBAR plots a bar graph.
| The call is: | CALL QPLBAR (XRAY, N) | level 0, 1 |
| or: | void qplbar (float *xray, int n); |
| XRAY | is an array containing data points. |
| N | is the number of data points. |
QPLPIE plots a pie chart.
| The call is: | CALL QPLPIE (XRAY, N) | level 0, 1 |
| or: | void qplpie (float *xray, int n); |
| XRAY | is an array containing data points. |
| N | is the number of data points. |
QPLCLR makes a 3-D colour plot of a matrix.
| The call is: | CALL QPLCLR (ZMAT, IXDIM, IYDIM) | level 0, 1 |
| or: | void qplclr (float *zmat, int ixdim, int iydim); |
| ZMAT | is a matrix with the dimension (IXDIM, IYDIM) containing the function values. |
| IXDIM, IYDIM | are the dimensions of ZMAT. |
QPLSUR makes a surface plot of a matrix.
| The call is: | CALL QPLSUR (ZMAT, IXDIM, IYDIM) | level 0, 1 |
| or: | void qplsur (float *zmat, int ixdim, int iydim); |
| ZMAT | is a matrix with the dimension (IXDIM, IYDIM) containing the function values. |
| IXDIM, IYDIM | are the dimensions of ZMAT. |
QPLCON makes a contour plot of a matrix.
| The call is: | CALL QPLCON (ZMAT, IXDIM, IYDIM, NLV) | level 0, 1 |
| or: | void qplcon (float *zmat, int ixdim, int iydim, int nlv); |
| ZMAT | is a matrix with the dimension (IXDIM, IYDIM) containing the function values. |
| IXDIM, IYDIM | are the dimensions of ZMAT. |
| NLV | is the number of contour levels that should be generated. |
CALL METAFL ('CONS')
CALL DISINI
CALL NAME ('X-axis', 'X')
CALL NAME ('Y-axis', 'Y')
CALL TITLIN ('This is a Title', 2)
CALL QPLOT (XRAY, YRAY, N)
END