Path: csiph.com!eternal-september.org!feeder.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Ethan A Merritt Newsgroups: comp.graphics.apps.gnuplot Subject: Re: A couple of questions Date: Tue, 25 Jul 2017 08:33:23 -0700 Organization: A noiseless patient Spider Lines: 21 Message-ID: References: <6ea9272a-e8f7-422d-9eee-7a9b5709ab68@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7Bit Injection-Date: Tue, 25 Jul 2017 15:29:24 -0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="3fac2d2917e9fdb59f6fe8956e61b1da"; logging-data="31419"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18q5lqw+gMhQ2STzG50tfWg" User-Agent: KNode/4.14.5 Cancel-Lock: sha1:YGrtkD9/xPknKinBkL5SEtGg9YM= Xref: csiph.com comp.graphics.apps.gnuplot:3698 layzarc@aol.com wrote: > Ethan, >2. The format of my binary (matrix) file as > described in the manual: The second interpretation assumes a > non-uniform grid with explicit x and y coordinates. The 1st row of > input data contains the y coordinates; the 1st column of input data > contains the x coordinates. For binary input data, the 1st element of > the 1st row must contain the number of columns. This is the default > for binary matrix input. That's the default _matrix_ format. It says nothing about images. The pixels in a 2D image constitute a uniform rectangular grid, but as you just quoted the binary matrix format in general describes a non-uniform grid. So "with image" is not an option for this data. If the points are spaced closely enough you may get the effect you want by using "with points pointtype 5". That draws each of your points as an individual square "pixel". You can adjust the point size to fill in gaps or reduce overlap. Ethan