| 105 | } |
| 106 | |
| 107 | void Window::scatter3(const array& P, af::markerType marker, |
| 108 | const char* const title) { |
| 109 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
| 110 | AF_THROW(af_draw_scatter_nd(get(), P.get(), marker, &temp)); |
| 111 | } |
| 112 | |
| 113 | void Window::hist(const array& X, const double minval, const double maxval, |
| 114 | const char* const title) { |
nothing calls this directly
no test coverage detected