[sage-support] 3D scatterplots in sage

2010-12-28 Thread bgbg
1 down vote favorite 2 Is it possible to create 3D scatterplots in sage? By scatterplot I mean graph like this: http://stackoverflow.com/questions/4439894/3d-scatterplots-in-sage -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Re: Equivalent to matlab's plot(x,y,'ok')

2009-01-15 Thread bgbg . bg
Sorry, the commands create scatter plots in two (figure 1), or three dimensions. The 'ok' option defines black ('k') open dots ('o') and the 'or' defines red ('r') open dots ('o'). Here is figure 1: http://img292.imageshack.us/my.php?image=fig1js9.jpg --~--~-~--~~~---~-

[sage-support] Equivalent to matlab's plot(x,y,'ok')

2009-01-15 Thread bgbg . bg
Hello, consider the following matlab code: x = [1,2,3,4]; y = [2,3,4,5]; z = [4,3,2,1]; figure(1); plot (x,y, 'ok'); figure(2); plot3(x,y,z, 'or'); what should I use in sage notebooks in order to achieve similar figures? Thank you --~--~-~--~~~---~--~~ To post to