| 64 | } |
| 65 | |
| 66 | void Window::plot(const array& in, const char* const title) { |
| 67 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
| 68 | AF_THROW(af_draw_plot_nd(get(), in.get(), &temp)); |
| 69 | } |
| 70 | |
| 71 | void Window::plot(const array& X, const array& Y, const char* const title) { |
| 72 | af_cell temp{_r, _c, title, AF_COLORMAP_DEFAULT}; |
no test coverage detected