On Thu, Oct 2, 2008 at 8:05 PM, Diamantis <[EMAIL PROTECTED]> wrote: > > Hi, > I recently installed sage (Ubuntu 8.04) as I think I am going to need > it for my PhD work. I was trying to make a 3d plot of a function, in > order to better understand a model, but what confuses me is that I > cannot find how to add labels on the axes. Any ideas? > Thank you very much.
I think unfortunately nobody implemented that yet. You can work around this by using the text3d command to explicitly place a label, like this: sage: var('x,y'); sage: plot3d(sin(x*y),(x,-1,1),(y,-2,2)) + text3d("X Axis",(0,-2,-1)) (When this feature is implemented, it will in fact be implemented by just calling text3d.) I hope somebody will implement it; I doubt it would be difficult. - William --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---