You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "server/vector_type.hpp"
|
|
#include "sdk/aquery.h"
|
|
#include "matplot/matplot.h"
|
|
|
|
__AQEXPORT__(bool)
|
|
draw(vector_type<int> x, vector_type<int> y) {
|
|
using namespace matplot;
|
|
auto plt = gca();
|
|
plt->plot(vector_type_std{x}, vector_type_std{y});
|
|
show();
|
|
return true;
|
|
}
|