Re: [sage-support] finite cartesian product

2010-10-04 Thread Johannes
thnx, excatly what i was looking for. Am 04.10.2010 00:32, schrieb Philipp Schneider: Hi, (...) In my next try I used FiniteEnumeratedSet and cartesian_product, but this is not iterable. Is there any other way to do this? there is a sage function called cartesian_product_iterator.

[sage-support] Re: finite cartesian product

2010-10-04 Thread Jason Grout
On 10/3/10 5:32 PM, Philipp Schneider wrote: Hi, (...) In my next try I used FiniteEnumeratedSet and cartesian_product, but this is not iterable. Is there any other way to do this? there is a sage function called cartesian_product_iterator. You can also use the python function for this:

[sage-support] German translation of the tutorial / Übersetzung des Tutorials in Deutsch

2010-10-04 Thread Philipp Schneider
Dear Sage community, Michael Mardaus and I are happy to announce that we have finished translating the complete Sage tutorial to German. Now we need the help of as many German speaking users as possible to proofread our translation. If you happen to belong to this group and have some minutes to

[sage-support] modulo operator for reals

2010-10-04 Thread jpc
Why does the plot plot(k%1,k,0,5) is not produced but the following works: k=var('k') plot( k/1, k,0,5).show() print 1.9%1 What can be used instead ? Pedro -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to

[sage-support] Indentation of multiline output?

2010-10-04 Thread Alasdair
In my .ipythonrc file, I have set prompt_out ' ' But this only affects the first line of output when I use Sage in a console: sage: random_matrix(Integers(7),3,3) [6 1 2] [6 2 2] [4 5 1] The same thing happens if I set prompts_pad_left 1 How can I have every output line indented? Thanks,