Re: [sage-support] Re: adding noise

2010-04-03 Thread Robert Bradshaw
On Apr 2, 2010, at 9:41 PM, G B wrote: Thanks for the detailed response, Simon. Please understand that I'm not being critical of Sage-- quite the contrary, I'm excited about what it might offer me once I master it. I think you touch on one key to the problem-- I'm not a mathematician,

[sage-support] Re: Print only outputs?

2010-04-03 Thread ma...@mendelu.cz
Another solution, different from the previous ones is to convert sws file to pdf using sws2tex - http://bitbucket.org/whuss/sws2tex/ It should be trivial to hack the python or TeX code to remove the content of input cells. example of the output is http://user.mendelu.cz/marik/sage/as.pdf Robert

[sage-support] List of standard functions?

2010-04-03 Thread bb
I screened all of the offered documents from the sgaemath-page to find a list of the offered standard-functions - no success! May be there is a table or list about that but I just could not find it? Screening the index is one possibility, but does not make me really happy. Tnx BB -- To post

Re: [sage-support] List of standard functions?

2010-04-03 Thread Tim Joseph Dumol
Hi, Do you mean something like these: http://wiki.sagemath.org/quickref ? Otherwise, the reference manual http://sagemath.org/doc/reference/ has a full list. On Sat, Apr 3, 2010 at 11:32 PM, bb bblo...@arcor.de wrote: I screened all of the offered documents from the sgaemath-page to find a

[sage-support] Re: List of standard functions?

2010-04-03 Thread Simon King
Hi! Question out of ignorance: What do you mean by a 'standard function'? Is it calculus stuff such as sin and cos, or do you mean Python functions? If it is the latter, you may get a list of all callable objects in the global name space by sage: F = [f for f in globals().values() if

[sage-support] Re: List of standard functions?

2010-04-03 Thread Alec Mihailovs
On Apr 3, 11:55 am, Simon King simon.k...@nuigalway.ie wrote:   sage: F = [f for f in globals().values() if callable(f)] I would write it as filter(callable, globals().values()) Alec -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send

[sage-support] operands and expresssion

2010-04-03 Thread pallab
let us do, f=function('f',x) expr=f(x) expr.operands() the out put is, [x] Is it a bug?, I expect [f(x)]. using, f=function('f',x) expr=2*f(x) expr.operands() correctly gives, [f(x),2] -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group,

[sage-support] derivative instance

2010-04-03 Thread pallab
Is there any way to check whether a symbolic expression is a derivative. Like, isinstance(diff(f(x),x),what to put?) gives True and isinstance(f(x),what to put?) gives false, assuming f is not a derivative itself. -- To post to this group, send email to sage-support@googlegroups.com To

Re: [sage-support] operands and expresssion

2010-04-03 Thread Mike Hansen
On Sat, Apr 3, 2010 at 11:15 AM, pallab pallabb...@gmail.com wrote: let us do, f=function('f',x) expr=f(x) expr.operands() the out put is, [x] Is it a bug?, No, it's not a bug since the operator is the function f: sage: f.operator() f --Mike -- To post to this group, send email to

[sage-support] Re: derivative instance

2010-04-03 Thread ma...@mendelu.cz
What kind of behavior do you expect from the following command? isinstance(diff(sin(x),x),what to put?) Robert On 3 dub, 20:32, pallab pallabb...@gmail.com wrote: Is there any way to check whether a symbolic expression is a derivative. Like, isinstance(diff(f(x),x),what to put?) gives

[sage-support] Re: sageplot and includegraphics3-... SOLVED

2010-04-03 Thread ma...@mendelu.cz
Hi Dan and Georg On 1 dub, 01:37, Dan Drake dr...@kaist.edu wrote: Ah, this is very nice. I was going to reply and say that rewriting \sageplot to parse things like \sageplot-3{...} would be very hard (for me, at least; I'm not much of a TeX guru) but now I can put a reference to this into

[sage-support] Re: derivative instance

2010-04-03 Thread pallab
I do not know. If it is already evaluated to cos(x) then it should be true. current sympy gives false, I think I would go with it. On Apr 3, 11:36 am, ma...@mendelu.cz ma...@mendelu.cz wrote: What kind of behavior do you expect from the following command? isinstance(diff(sin(x),x),what to

[sage-support] Re: derivative instance

2010-04-03 Thread pallab
I mean... I do not know. If it is already evaluated to cos(x) then it should be false (not *true*). current sympy gives false, I think I would go with it. On Apr 3, 11:51 am, pallab pallabb...@gmail.com wrote: On Apr 3, 11:36 am, ma...@mendelu.cz ma...@mendelu.cz wrote: What kind of

[sage-support] Re: derivative instance

2010-04-03 Thread Alec Mihailovs
On Apr 3, 2:32 pm, pallab pallabb...@gmail.com wrote: Is there any way to check whether a symbolic expression is a derivative. Like, isinstance(diff(f(x),x),what to put?) gives True and isinstance(f(x),what to put?) gives false, assuming f is not a derivative itself. One can do the

[sage-support] Re: Print only outputs?

2010-04-03 Thread Alec Mihailovs
On Apr 2, 11:47 pm, William Stein wst...@gmail.com wrote: That's pretty clever!   Thank you! Is amazing how flexible the notebook is, since it uses HTML instead of ReST...  (yes, I know, it's flexible enough to support cross-site scripting attacks too). That's the same as with other CAS.

[sage-support] Is there any way to get old VMware versions?

2010-04-03 Thread Rob
I've officially given up on ever getting VirtualBox to work properly on my netbook (I'm pretty sure it's just a memory issue), so I'd like to go back to the last VMware version (4.1.2, I guess). I can find where to find the source code for the old versions, but I've looked all over sagemath.org

Re: [sage-support] Is there any way to get old VMware versions?

2010-04-03 Thread William Stein
Hi, Coincidentally, I gave up on using virtualbox for sage-windows. The next version will be vmware based. Expect this early next week. On Saturday, April 3, 2010, Rob furit...@gmail.com wrote: I've officially given up on ever getting VirtualBox to work properly on my netbook (I'm pretty sure

[sage-support] Re: operands and expresssion

2010-04-03 Thread pallab
I got it :), thanks. On Apr 3, 11:34 am, Mike Hansen mhan...@gmail.com wrote: On Sat, Apr 3, 2010 at 11:15 AM, pallab pallabb...@gmail.com wrote: let us do, f=function('f',x) expr=f(x) expr.operands() the out put is, [x] Is it a bug?, No, it's not a bug since the operator is

[sage-support] Re: Is there any way to get old VMware versions?

2010-04-03 Thread Rob
I'm VERY glad to hear that. I'll hang on until the next release then. Thanks! On Apr 3, 6:13 pm, William Stein wst...@gmail.com wrote: Hi, Coincidentally, I gave up on using virtualbox for sage-windows. The next version will be vmware based.  Expect this early next week. On Saturday,