Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!feeder.erje.net!eu.feeder.erje.net!news.albasani.net!.POSTED!not-for-mail From: Kurt Sterau Newsgroups: comp.graphics.apps.gnuplot Subject: Re: skip binary data Date: Mon, 29 Oct 2012 21:39:36 +0100 Organization: none Lines: 12 Message-ID: <87pq41nhbr.fsf@kerstf.org> References: <874nlddzzs.fsf@kerstf.org> <87txtdnkph.fsf@kerstf.org> Mime-Version: 1.0 Content-Type: text/plain X-Trace: news.albasani.net uJDxDTCUkNPyl5wn2ddH192nN7A4ALz6LKyvj+d3h8c9Xt8UQ3272NOkqFMX8RoppzvZkFR6OAZGDeTWGE4udIf84jX05EYK5ExYXtMOlTgZcWBTzuuqjlY6naKM+Tuy NNTP-Posting-Date: Mon, 29 Oct 2012 20:39:38 +0000 (UTC) Injection-Info: news.albasani.net; logging-data="vTdEmqYjtOru3NIlFoWAhnL3w77vZxyv6TM97dt6BLEFdeMNm508H48nR0GTPy6Dpohyqhee8IraAXiLgzOBpc+0KgZk4eBNS2Ll8B9FC7LBRT2X/XDA873pV3t11DeI"; mail-complaints-to="abuse@albasani.net" Cancel-Lock: sha1:yERsqoCQXDlp8CtkknrZy6TDi9E= sha1:7subbvUxeJJhPoBZJdyart62FA8= Xref: csiph.com comp.graphics.apps.gnuplot:1452 > plot 'data.bin' binary skip=6 format='%int8' u ($0):($1) with line lt 1 > > The first 6 Bytes are skipped now, thanks. But what about the last byte? > How can I suppress this? plot 'data.bin' binary record=2500 skip=6 format='%int8' u ($0):($1) with line lt 1 This does now what I want, but I don't understand why... -- Kurt