|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
2 file 3D splot with different palettes or points possible?Hi,
I want to combine the contents of 2 files in 1 3-d plot. The following command does almost what I want: splot './data/file1.txt' using 2:3:4:1 , \ './data/file2.txt' using 2:3:4:1 But this will create a plot where each file differs just in the dot-marker ( '+' for the first file, 'x' for the second file). This gives a poor plot, given the number of dots. Is it possible to change the point to a singe dot and use a different palette for each file? If so, what should be the exact syntax as all my attempts to change the global palette an/or point type failed miserably. TIA -- Groeten, Joost Kraaijeveld Askesis B.V. Molukkenstraat 14 6524NB Nijmegen tel: 024-3888063 / 06-51855277 fax: 024-3608416 web: www.askesis.nl ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Gnuplot-info mailing list Gnuplot-info@... https://lists.sourceforge.net/lists/listinfo/gnuplot-info |
|
|
|
|
|
Re: 2 file 3D splot with different palettes or points possible?let the two data sets use separate regions of the palette:
splot './data/file1.txt' using 2:3:4:1 with points pointtype 1, \ './data/file2.txt' using 2:3:4:($1+max_z_value_of_first_data_set) with points pointtype 1
|
| Free embeddable forum powered by Nabble | Forum Help |