/usr/share/paw-demos/pawex7.kumac is in paw-demos 1:2.14.04.dfsg.2-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | MACRO PAWEX7
**************************************************************************
* PAW TUTORIAL EXAMPLE 7 *
* Plot a few one-dimensional functions *
**************************************************************************
Exec ALLDEF
opt utit
opt grid
func/plot x*sin(x)*exp(-0.1*x) -10. 10.
set dmod 2
func/plot (sin(x)+cos(x))**5 -10. 10. s
set dmod 3
func/plot (sin(x)/(x)-x*cos(x)) -10. 10. s
set dmod 1
opt htit
opt ngri
RETURN
|