From these Gnuplot 5+ commands:
rx=2;kx=0;ry=1;ky=-1
ex=(1+kx)/rx
ey=(1+ky)/ry
show variables
I get this output:
rx = 2
kx = 0
ry = 1
ky = -1
ex = 0
ey = 0
Why is ex zero?
Al
Note that gnuplot uses both "real" and "integer" arithmetic, like
FORTRAN and C. Integers are entered as "1", "-10", etc; reals as "1.0", "-10.0", "1e1", 3.5e-1, etc. The most important difference between the
two forms is in division: division of integers truncates: 5/2 = 2;
division of reals does not: 5.0/2.0 = 2.5.
--
Chris Elvidge
England
Sysop: | Keyop |
---|---|
Location: | Huddersfield, West Yorkshire, UK |
Users: | 113 |
Nodes: | 8 (1 / 7) |
Uptime: | 31:40:34 |
Calls: | 2,470 |
Calls today: | 1 |
Files: | 8,630 |
Messages: | 1,893,583 |