Example #1
0
        public static int gplotSimpleXYN(this Numa nax, Numaa naay, GPLOT_STYLE plotstyle, GPLOT_OUTPUT outformat, string outroot, string title)
        {
            if (null == naay)
            {
                throw new ArgumentNullException("naay cannot be null");
            }

            return(Native.DllImports.gplotSimpleXYN((HandleRef)nax, (HandleRef)naay, (int)plotstyle, (int)outformat, outroot, title));
        }
Example #2
0
        public static int gplotAddPlot(this GPlot gplot, Numa nax, Numa nay, GPLOT_STYLE plotstyle, string plottitle)
        {
            if (null == gplot ||
                null == nay)
            {
                throw new ArgumentNullException("gplot, nay cannot be null");
            }

            return(Native.DllImports.gplotAddPlot((HandleRef)gplot, (HandleRef)nax, (HandleRef)nay, (int)plotstyle, plottitle));
        }
Example #3
0
        public static int gplotSimpleXY2(this Numa nax, Numa nay1, Numa nay2, GPLOT_STYLE plotstyle, int outformat, string outroot, string title)
        {
            if (null == nay1 ||
                null == nay2)
            {
                throw new ArgumentNullException("nay1, nay2 cannot be null");
            }

            return(Native.DllImports.gplotSimpleXY2((HandleRef)nax, (HandleRef)nay1, (HandleRef)nay2, (int)plotstyle, outformat, outroot, title));
        }