|
From: Thomas S. <t.s...@fz...> - 2008-03-12 16:33:10
|
> plot "../gkn2.run1.pd" binary record=90003 format="%float32" using 3:44 NO, forget it, it's not so easy... 'record' specifies the number of rows in your file, let's say it's '345'. the number of values per row is given by the highest position used in the 'using' specification - or given by 'format'. if your fortran records (=rows) contain 90000 words, then there are 90003 words in one row. and this '90003' needs to appear in the 'using' specification. (i have no idea how to write the '90003' into the 'format' specification) a simple workaround would be something like this: plot "../gkn2.run1.pd" binary record=345 format="%float32" using 3:($90003==0?$44:$44) -- View this message in context: http://www.nabble.com/2D-plot-out-of-a-binary-file-tp15980891p16006933.html Sent from the Gnuplot - Bugs mailing list archive at Nabble.com. |