[sage-support] Re: any python plot3d ?

2011-01-17 Thread kkwweett
thanks Marshall, I tried viewer option but this is not working for me (firefox,ubuntu) even if it is already better than a yellow warning. I used example from video3 of http://www.sagemath.org/help-video.html def f(x,y): return sin(x-y)*y*cos(x) plot3d(f(x,y),(x-3,3),(y,-3,3)) but all I see is a

[sage-support] any python plot3d ?

2011-01-17 Thread kkwweett
Hi, I'm trying to install sage4.6 on a modest eeepc and I've decided to not install any Java prog for memory reasons. All is perfect since mostly everything is included, except plot3d. Do you know any non-java project I can benefit from to get the basic functionalities of plot3d (display, shadows,

[sage-support] Re: is it possible to show() a variable with "it's name = " in front of it

2008-10-06 Thread kkwweett
>Or is there a way to access the content of a variable, when you only >have a string with its name? 'Eval' can do that : def ashow(v): show("$"+v+"=%s$"%latex(eval(v))) b=2/3 ashow('b') Hope that helps --~--~-~--~~~---~--~~ To post to this group, send email t

[sage-support] Re: "less than" symbol in worksheet HTML

2008-10-05 Thread kkwweett
Thank you. I didn't know I could use $ ... $ Indeed, the result looks better. In the other hand, is there any difference between $$ ... $$ and ... ? --~--~-~--~~~---~--~~ To post to this group, send email to sage-support@googlegroups.com To unsubscribe from th

[sage-support] Re: question on using integral() in sage. Fourier transform of unit step function.

2008-09-23 Thread kkwweett
2*I*pi*(a+I*b)*t),t,0,x) sage: factor(limit(expr(x),x=infinity)) -1*I/(2*pi*(I*b+a)) SAGE doesn't know anymore that exp() is strictly ascending. (assume(b<0) doesn't work anymore) On 22 sep, 12:30, kkwweett <[EMAIL PROTECTED]> wrote: &g

[sage-support] Re: question on using integral() in sage. Fourier transform of unit step function.

2008-09-22 Thread kkwweett
(where is my my last post ?) you can indirectly get : >./sage -- | SAGE Version 3.1.1 ... | Type notebook() -- sage: var('a b t x') (a, b, t, x) sage: assume(b<0) sage: expr(x)=integral(exp(-2*I*pi*(a+I*b)*t),t,0,x) sage: factor(limit(expr

[sage-support] Re: question on using integral() in sage. Fourier transform of unit step function.

2008-09-22 Thread kkwweett
you can indirectly get > ./sage --- | SAGE Version 3.1.1 ... | Type notebook() ... -- sage: var('a b t x') (a, b, t, x) sage: assume(b<0) sage: expr(x)=integral(exp(-2*I*pi*(a+I*b)*t),t,0,x) sage: factor(limit(expr(x),x=infinity))