| 86 | } |
| 87 | |
| 88 | void Window::scatter(const array& in, af::markerType marker, |
| 89 | const char* const title) { |
| 90 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
| 91 | AF_THROW(af_draw_scatter_nd(get(), in.get(), marker, &temp)); |
| 92 | } |
| 93 | |
| 94 | void Window::scatter(const array& X, const array& Y, af::markerType marker, |
| 95 | const char* const title) { |
no test coverage detected