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
cd...@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.
_______________________________________________
users mailing list
users@lists.scilab.org
http://lists.scilab.org/mailman/listinfo/users

Reply via email to