| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
8.12.9 ContF (Pure C)
- C function:
voidmgl_contf_xy_val (HMGLgr,const HMDTv,const HMDTx,const HMDTy,const HMDTz,const char *sch,floatzVal) The function draws solid (or filled) contour lines for surface specified parametrically {x[i,j], y[i,j], z[i,j]} at z = zVal (or for z=v[k] if
zVal==NAN). Contours are plotted for z[i,j]=v[k] where v[k] are values of data array v. String sch sets the color scheme (see section Color scheme). Previous color scheme is used by default. If string sch have symbol ‘#’ then grid lines are drawn. The minor dimensions of arrays x, y, z should be equal x.nx=z.nx && y.nx=z.ny or x.nx=y.nx=z.nx && x.ny=y.ny=z.ny. Arrays x and y can be vectors (not matrices as z). Surface is plotted for each z slice of the data. See also Dens(), Cont(), Axial(), ContF[XYZ](). See section ContF sample, for sample code and picture.
- C function:
voidmgl_contf_val (HMGLgr,const HMDTv,const HMDTz,const char *sch,floatzVal) The same as previous with x, y equidistantly distributed in interval [Min, Max].
- C function:
voidmgl_contf_xy (HMGLgr,const HMDTx,const HMDTy,const HMDTz,const char *sch,intnum,floatzVal) The same as first one with vector v of num-th elements equidistantly distributed in range [Cmin, Cmax].
- C function:
voidmgl_contf (HMGLgr,const HMDTz,const char *sch,intnum,floatzVal) The same as previous with x, y equidistantly distributed in interval [Min, Max].
