From: <br...@ph...> - 2006-07-18 21:05:06
|
Dmitry Pogrebinsky wrote: > Unfortunately next command not excepted by compiler: The compiler has nothing to do with it. > plot x with lines 3, -x with lines 4 OK > plot x with lines lw 2 3 is OK > but > plot x with lines lw 2 3, -x with lines 3 Failed. The key reason for that is that you're still using long outdated syntax. You're specifying line types by number only, without the keyword 'linetype' in front of it. plot x with lines lw 2 linetype 3, -x with lines linetype 3 would have worked. |