#include #include int main() { using namespace matplot; auto [X, Y] = meshgrid(iota(-3, .125, 3)); auto Z = peaks(X, Y); waterfall(X, Y, Z); show(); return 0; }