Go to the source code of this file.
Namespaces | ||||||||||||||||||||||
namespace | af | |||||||||||||||||||||
Typedefs | ||||||||||||||||||||||
typedef unsigned | handle | |||||||||||||||||||||
Functions | ||||||||||||||||||||||
handle | trimesh (const float *d_X, const float *d_Y, const float *d_Z, const float *d_C, const unsigned npts) | |||||||||||||||||||||
Matrix Interface: Surface plot of 2D data. | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot3d (const af::array &X) | |||||||||||||||||||||
Matrix Interface: Visualize 2D velocity field with an array of arrows | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | arrows (const af::array &X, const af::array &Y, const af::array &U, const af::array &V) | |||||||||||||||||||||
Matrix Interface: Visualize 1D data as a line plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot (const af::array &X) | |||||||||||||||||||||
handle | plot (const af::array &X, const char *linestyle) | |||||||||||||||||||||
Matrix Interface: Visualize 2D data as a line plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot (const array &X, const array &Y) | |||||||||||||||||||||
handle | plot (const array &X, const array &Y, const char *linestyle) | |||||||||||||||||||||
Matrix Interface: Visualize 3D data as scatter plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | points (const af::array &X, const af::array &Y, const af::array &Z) | |||||||||||||||||||||
Matrix Interface: Visualize 3D data volume | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | volume (const af::array &X) | |||||||||||||||||||||
Matrix Interface: Visualize 2D data as single scale image | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | imgplot (const af::array &X) | |||||||||||||||||||||
Matrix Interface: Visualize 2D data as color image | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | rgbplot (const af::array &X) | |||||||||||||||||||||
Device pointer interface: Surface plot of 2D data. | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot3d (const float *d_a, const unsigned w, const unsigned h) | |||||||||||||||||||||
Device pointer interface: Visualize 2D velocity field with an array of arrows | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | arrows (const float *d_X, const float *d_Y, const float *d_U, const float *d_V, const int cnt) | |||||||||||||||||||||
Device pointer interface: Visualize 1D data as a line plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot (const float *d_A, const unsigned len) | |||||||||||||||||||||
handle | plot (const float *d_A, const unsigned len, const char *linestyle) | |||||||||||||||||||||
Device pointer interface: Visualize 3D data as a line plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | plot (const float *d_X, const float *d_Y, const float *d_Z, const unsigned npts) | |||||||||||||||||||||
handle | plot (const float *d_X, const float *d_Y, const float *d_Z, const unsigned npts, const char *linestyle) | |||||||||||||||||||||
Device pointer interface: Visualize 3D data as a volume rendering | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | volume (const float *d_X, const unsigned w, const unsigned h, const unsigned d) | |||||||||||||||||||||
Device pointer interface: Visualize 3D data as scatter plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | points (const float *d_X, const float *d_Y, const float *d_Z, const unsigned npts) | |||||||||||||||||||||
Device pointer interface: Visualize 3D data as a colored scatter plot | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | scattercolors (const float *d_X, const float *d_Y, const float *d_Z, const float *d_R, const float *d_G, const float *d_B, const unsigned npts) | |||||||||||||||||||||
Device pointer interface: Visualize 2D data as single scale image | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | imgplot (const float *d_X, const unsigned w, const unsigned h) | |||||||||||||||||||||
Device pointer interface: Visualize 2D data as color image | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | rgbplot (const float *d_X, const unsigned w, const unsigned h) | |||||||||||||||||||||
Enable graphics overlay plotting for composition of plots on same axis | ||||||||||||||||||||||
afError | keep_on () | |||||||||||||||||||||
Disable graphics overlay plotting for composition of plots on same axis | ||||||||||||||||||||||
afError | keep_off () | |||||||||||||||||||||
Create a subplot within the figure window for compositions of plots | ||||||||||||||||||||||
| ||||||||||||||||||||||
afError | subfigure (unsigned w, unsigned h, unsigned idx) | |||||||||||||||||||||
Set global color palette | ||||||||||||||||||||||
| ||||||||||||||||||||||
afError | palette (const char *map) | |||||||||||||||||||||
Clear the current figure | ||||||||||||||||||||||
afError | clearfig () | |||||||||||||||||||||
Force drawing of the current figure (blocking) | ||||||||||||||||||||||
afError | draw () | |||||||||||||||||||||
Display a figure window | ||||||||||||||||||||||
handle | figure () | |||||||||||||||||||||
Set the title of the current figure or subfigure | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | title (const char *str) | |||||||||||||||||||||
Display the current figure with given geometry | ||||||||||||||||||||||
| ||||||||||||||||||||||
handle | figure (int x, int y, int w, int h) | |||||||||||||||||||||
Forcibly close the current figure | ||||||||||||||||||||||
afError | close () |
typedef unsigned handle |