- Timestamp:
- May 17, 2007, 9:58:42 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/kapa-mods-2007-05/Ohana/src/opihi/lib.data/PlotVectors.c
r13402 r13409 10 10 } 11 11 12 int PlotVector (int Npts, float *values ) {12 int PlotVector (int Npts, float *values, char *type) { 13 13 14 KapaPlotVector (kapa, Npts, values );14 KapaPlotVector (kapa, Npts, values, type); 15 15 return (TRUE); 16 16 } … … 19 19 20 20 PrepPlotting (N, graphmode); 21 PlotVector (N, xValues );22 PlotVector (N, yValues );21 PlotVector (N, xValues, "x"); 22 PlotVector (N, yValues, "y"); 23 23 24 24 return (TRUE); … … 28 28 29 29 PrepPlotting (N, graphmode); 30 PlotVector (N, xValues );31 PlotVector (N, yValues );32 PlotVector (N, zValues );30 PlotVector (N, xValues, "x"); 31 PlotVector (N, yValues, "y"); 32 PlotVector (N, zValues, "z"); 33 33 34 34 return (TRUE);
Note:
See TracChangeset
for help on using the changeset viewer.
