#include #include #include #include #include int main() { using namespace matplot; tiledlayout(2, 1); auto x = randn(50, 0, 1); auto y = randn(50, 0, 1); scatter(x, y); auto xl = xlim(); std::cout << "xl[0]: " << xl[0] << std::endl; std::cout << "xl[1]: " << xl[1] << std::endl; show(); return 0; }