/* xylookup.h */ #ifndef _INC_XYLOOKUP_H #define _INC_XYLOOKUP_H // xylookup.tab #define _xylstr_lyv "Lookup Y Values Given Arbitrary X Values" // xylookup.pan #define _xylstr_xyl "Xylookup" #define _xylstr_xdi "XY Data Input" #define _xyltip_xdi "Single Interval or XY Series | Separate X and Y Input Series" #define _xylopt_sgs "Single Series" #define _xylopt_sep "Separate X and Y Series" #define _xylstr_xse "X Series" #define _xyltip_xse "Input X Values" #define _xylstr_ise "Input Series" #define _xyltip_ise "Interval or XY Series to Interpolate from" #define _xylstr_yse "Y Series" #define _xyltip_yse "Input Y Values" #define _xylstr_xcn "X Column Number" #define _xyltip_xcn "Input X Value Column" #define _xylstr_ycn "Y Column Number" #define _xyltip_ycn "Input Y Value Column" #define _xylstr_nxv "New X Values" #define _xyltip_nxv "Desired Output X Values" // xylookop.pan #define _xylstr_opt "Options" #define _xylstr_inm "Interpolation Method" #define _xyltip_inm "Return Nearest Neighbor | Straight Line Interpolation | Cubic Spline Interpolation" #define _xylopt_non "None" #define _xylopt_lin "Linear" #define _xylopt_spl "Spline" #define _xylstr_orm "Out of Range Method" #define _xyltip_orm "Interpolate Out of Range Values from the End Points | Clip Out of Range Values to End Points | Set Out of Range Values to NaN" #define _xylopt_itr "Interpolate" #define _xylopt_clp "Clip" #define _xylopt_sna "Set to NA" #endif