You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
595 B
27 lines
595 B
* test de titre
|
|
|
|
.control
|
|
|
|
set hcopydevtype = postscript
|
|
set hcopypscolor=1
|
|
set color2=rgb:F/0/0
|
|
|
|
let x = vector(5)
|
|
let y = exp(x)
|
|
|
|
plot y vs x xlabel 'Mon x' ylabel 'Mon y'
|
|
hardcopy plot_1.ps y vs x xlabel 'Mon X' ylabel 'Mon Y'
|
|
|
|
plot y vs x xlabel 'Mon x' title 'Mon titre'
|
|
hardcopy plot_2.ps y vs x xlabel 'Mon x' title 'Mon titre'
|
|
|
|
plot y vs x xlabel test
|
|
hardcopy plot_3.ps y vs x xlabel test
|
|
|
|
plot y vs x
|
|
hardcopy plot_4.ps y vs x
|
|
|
|
plot y vs x xlabel 'Labellisé X' ylabel 'Labellisée Y' title 'Titré'
|
|
hardcopy plot_5.ps y vs x xlabel 'Labellisé X' title 'Labellisé Y' title 'Titré'
|
|
|
|
.endc
|