#include #include #include #include #include int main() { using namespace matplot; fplot("sin(x)"); title("Sine Plot"); auto ax = gca(); subplot(2, 1, 1, ax); show(); return 0; }