Skip to content

Subplot Title

1
sgtitle(str);

example_sgtitle_1

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#include <matplot/matplot.h>

int main() {
    using namespace matplot;
    subplot(2, 2, 0);
    title("First Subplot");
    subplot(2, 2, 1);
    title("Second Subplot");
    subplot(2, 2, 2);
    title("Third Subplot");
    subplot(2, 2, 3);
    title("Fourth Subplot");

    sgtitle("Subplot Grid Title");

    show();
    return 0;
}

More examples

example_sgtitle_2

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#include <matplot/matplot.h>

int main() {
    using namespace matplot;
    subplot(2, 1, 0);
    title("First Subplot");
    subplot(2, 1, 1);
    title("Second Subplot");

    sgtitle("Subplot Grid Title", "red");
    gcf()->title_font_size_multiplier(2.0);

    show();
    return 0;
}