MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / af_draw_scatter_nd

Function af_draw_scatter_nd

src/api/c/plot.cpp:396–404  ·  view source on GitHub ↗

Scatter API

Source from the content-addressed store, hash-verified

394
395// Scatter API
396af_err af_draw_scatter_nd(const af_window wind, const af_array in,
397 const af_marker_type af_marker,
398 const af_cell* const props) {
399 try {
400 fg_marker_type fg_marker = getFGMarker(af_marker);
401 return plotWrapper(wind, in, 1, props, FG_PLOT_SCATTER, fg_marker);
402 }
403 CATCHALL;
404}
405
406af_err af_draw_scatter_2d(const af_window wind, const af_array X,
407 const af_array Y, const af_marker_type af_marker,

Callers 2

scatterMethod · 0.50
scatter3Method · 0.50

Calls 2

getFGMarkerFunction · 0.85
plotWrapperFunction · 0.85

Tested by

no test coverage detected