Dear Devon: In J504b I can do it in the next form: plot/ a,:b Why I can't do with J602a? Please prove with J504b Thanks Alfonso Assuming you mean "a" is one set of points (pairs of (x,y) coordinates) and "b" is another:
'type point;pensize 5' plot (j./>a),:j./>b This plots "b" directly on top of "a" since they are exactly the same. You could offset "b" by a small, fixed amount like this: 'type point;pensize 5' plot (j./>a),:0.5j0.5+j./>b to separate them. On Sat, Dec 27, 2008 at 4:10 PM, Alfonso Salazar <[email protected]>wrote: > friends: > How can I plot in the same graph a y b > > a=.+-----------------------------------------------------------------+-----------------------------------------------------------------+ > |19.16 18.38 16.34 13.81 11.77 10.98 11.77 13.81 16.34 18.38 19.16|13.14 > 15..55 17.03 17.03 15.55 13.14 10.74 9.254 9.254 10.74 13.14| > > +-----------------------------------------------------------------+-----------------------------------------------------------------+ > > > b=.+-----------------------------------------------------------------+-----------------------------------------------------------------+ > |19.16 18.38 16.34 13.81 11.77 10.98 11.77 13.81 16.34 18.38 19.16|13.14 > 15..55 17.03 17.03 15.55 13.14 10.74 9.254 9.254 10.74 13.14| > > +-----------------------------------------------------------------+-----------------------------------------------------------------+ > > Thanks for your help > ¡Todo sobre Amor y Sexo! La guía completa para tu vida en Mujer de Hoy. http://mx.mujer.yahoo.com/ ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
