#include int main() { using namespace matplot; auto [x, y, z] = peaks(); surf(x, y, z); xlabel("x"); ylabel("y"); zlabel("z"); view(90, 0); show(); return 0; }