[Scilab-users] Overarching subplot title for graphic window

Jean-Yves Baudais Jean-Yves.Baudais at insa-rennes.fr
Thu Mar 11 09:03:16 CET 2021


Hi,

> I have been trying to figure out a way to add an overarching title on the
> graphic window that goes above the subplots? I have titles over each of my
> subplots, but I want one that is the title of the graphic window where the
> subplots are shown. I want to have the title to give a summary of what the
> subplots are of.

Something like that?

scf(0);
xtitle("Title")
xsetech([0,0.1,0.5,0.45]),plot(1:10,1:10),xtitle("First")
xsetech([0.5,0.1,0.5,0.45]),plot(1:10,-(1:10)),xtitle("Second")
xsetech([0,0.55,1,0.45]),plot(0:10,sin(0:10)),xtitle("Last")

-- Jean-Yves



More information about the users mailing list