Path: csiph.com!eternal-september.org!reader02.eternal-september.org!.POSTED!not-for-mail From: Chris Elvidge Newsgroups: comp.graphics.apps.gnuplot Subject: Re: What am I missing? Date: Fri, 4 Dec 2020 19:12:00 +0000 Organization: A noiseless patient Spider Lines: 32 Message-ID: References: <61b9cd9a-2508-400e-abf6-fc823fe9e28an@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Injection-Date: Fri, 4 Dec 2020 19:12:06 -0000 (UTC) Injection-Info: reader02.eternal-september.org; posting-host="2cdd4bb21406627f428f6502542dfb29"; logging-data="5528"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/onektUo8KPgKO/esk/MDqGz8RHNOYR2E=" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 Lightning/5.4 Cancel-Lock: sha1:pcRgzG1QVhwZhnADfoefs+319P4= In-Reply-To: <61b9cd9a-2508-400e-abf6-fc823fe9e28an@googlegroups.com> Content-Language: en-GB Xref: csiph.com comp.graphics.apps.gnuplot:4377 On 04/12/2020 04:10 pm, Al Greynolds wrote: > 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