! * \brief gplotSimpleN() * * \param[in] naa numaa; we plotted with Y_VS_I for each numa * \param[in] outformat GPLOT_PNG, GPLOT_PS, GPLOT_EPS, GPLOT_LATEX * \param[in] outroot root of output files * \param[in] title [optional] * \return 0 if OK, 1 on error * * * Notes: * (1) This gives a line plot of all numas in a numaa (array of numa), * where the
| 632 | * </pre> |
| 633 | */ |
| 634 | l_int32 |
| 635 | gplotSimpleN(NUMAA *naa, |
| 636 | l_int32 outformat, |
| 637 | const char *outroot, |
| 638 | const char *title) |
| 639 | { |
| 640 | return gplotSimpleXYN(NULL, naa, GPLOT_LINES, outformat, outroot, title); |
| 641 | } |
| 642 | |
| 643 | |
| 644 | /*! |
nothing calls this directly
no test coverage detected