/* ** DrawBiv0 ** ** Purpose: ** Show a bivariate plot using OxDraw ** ** Date: ** 20/2/2004 ** ** Author: ** Charles Bos */ #include // Include the Ox standard library header #include // Include the Ox graphics library header #include main() { decl mY; println ("Example of drawing bivariate histograms using OxDraw"); mY= rann(2, 1000); DrawBivDensity(0, mY, {"x", "y"}, TRUE, FALSE, FALSE, 0); SaveDrawWindow("drawbiv0.eps"); ShowDrawWindow(); }