Plot API
| 343 | |
| 344 | // Plot API |
| 345 | af_err af_draw_plot_nd(const af_window wind, const af_array in, |
| 346 | const af_cell* const props) { |
| 347 | return plotWrapper(wind, in, 1, props); |
| 348 | } |
| 349 | |
| 350 | af_err af_draw_plot_2d(const af_window wind, const af_array X, const af_array Y, |
| 351 | const af_cell* const props) { |
no test coverage detected