[Scilab-users] Overarching subplot title for graphic window

Dang Ngoc Chan, Christophe Christophe.Dang at sidel.com
Fri Mar 12 09:16:11 CET 2021


Hello,

> De : bty22
> Envoyé : mercredi 10 mars 2021 22:40
>
> I have been trying to figure out a way to add an overarching title on the graphic window that goes above the subplots?

I suggest to create an additional subplot and then use titlepage().
Something like :

----------

X=1:10;

subplot(3, 1, 1);

titlepage("My big title");

subplot(3, 1, 2);

plot(X, X);

xtitle("First plot", "x", "y");

subplot(3, 1, 3);

plot(X, X.*X);

xtitle("Second plot", "x", "y");

----------

Hope this helps

--
Christophe Dang Ngoc Chan
cdang at wanadoo.fr

General
This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail in error), please notify the sender immediately and destroy this e-mail. Any unauthorized copying, disclosure or distribution of the material in this e-mail is strictly forbidden.



More information about the users mailing list