2023-05-19 01:09:18 +0200 | received badge | ● Popular Question (source) |
2023-02-13 03:51:14 +0200 | received badge | ● Popular Question (source) |
2022-03-31 10:53:20 +0200 | received badge | ● Famous Question (source) |
2021-05-08 12:07:25 +0200 | received badge | ● Famous Question (source) |
2020-08-31 18:22:41 +0200 | commented answer | Combinations(range(100), 100).list() takes forever Thank you; that will work. |
2020-08-31 04:57:17 +0200 | received badge | ● Commentator |
2020-08-31 04:57:17 +0200 | commented question | Combinations(range(100), 100).list() takes forever PS. I am using |
2020-08-31 04:32:28 +0200 | received badge | ● Editor (source) |
2020-08-31 04:28:20 +0200 | asked a question | Combinations(range(100), 100).list() takes forever As title suggests,
On the other hand, Is there anything I can do to improve the performance? |
2020-05-02 23:11:29 +0200 | received badge | ● Notable Question (source) |
2020-02-14 02:29:17 +0200 | received badge | ● Popular Question (source) |
2020-02-08 20:37:31 +0200 | received badge | ● Supporter (source) |
2020-02-08 20:37:29 +0200 | received badge | ● Scholar (source) |
2019-05-22 11:07:54 +0200 | received badge | ● Notable Question (source) |
2019-03-13 13:13:27 +0200 | received badge | ● Popular Question (source) |
2018-09-15 22:36:56 +0200 | commented question | Sage does not see Imagemagick @Iguananaut I feel like there are two |
2018-09-12 02:49:38 +0200 | commented question | Sage does not see Imagemagick I temporarily solve this by |
2018-09-12 02:27:11 +0200 | commented question | Sage does not see Imagemagick Update: |
2018-09-12 02:18:14 +0200 | asked a question | Sage does not see Imagemagick I am trying out the animation thing in http://doc.sagemath.org/html/en/refer.... But Sage keep saying And indeed returns false. But I do have ImageMagick installed by homwbrew. i.e. it works perfectly in Terminal. What Could Possibly Go Wrong? (macOS 10.13; Sage 8.3; Imagemagick 7.0.8.) |
2018-02-07 01:14:04 +0200 | commented question | It takes so long to generate dictionary of GL elements. @slelievre before 8.0 now 8.1 and everything is good now. @dan_fulea: I am implementing a group action that is quite tedious. GL(4,2) acts on [0..15] by left-multiplying its binary expression as a column vector in GF(2)^4. And then act on |
2018-02-07 01:05:00 +0200 | commented answer | It takes so long to generate dictionary of GL elements. Thank you. I did update from 8.0 to 8.1. I was not aware of the version-issue because I thought I was quite new. Now everything works fine. |
2018-02-06 02:36:48 +0200 | commented question | It takes so long to generate dictionary of GL elements. Found this https://trac.sagemath.org/ticket/10950. Maybe I should update my Sage. |
2018-02-06 02:21:25 +0200 | commented question | It takes so long to generate dictionary of GL elements. It seems |
2018-02-06 02:03:25 +0200 | asked a question | It takes so long to generate dictionary of GL elements. The following command takes 9 seconds to execute. On the other hand takes minutes and does not seem to terminate. If I understand python dictionary correctly, they should take about the same time. So what happened? |
2018-01-24 01:32:17 +0200 | asked a question | Making a dictionary of matrices, and save the session Some time ago I made a dictionary of matrices with your help. Now I like to save the session by On the other hand I have no idea why specifying |
2017-12-26 22:00:33 +0200 | received badge | ● Student (source) |
2017-12-20 03:14:36 +0200 | commented answer | Making a dictionary of matrices I guess my bottleneck is that I expect |
2017-12-20 03:10:14 +0200 | commented question | Making a dictionary of matrices @dan_fulea Well I expect the dictionary to record not only entries but also the width and height. If I come up with a method that turns a matrix into a hashable matrix then I am reinventing |
2017-12-19 23:16:31 +0200 | asked a question | Making a dictionary of matrices I am trying to make a dictionary of matrices. Ideally But Sage refuses to hash (mutable) matrices. I then tried which gives I also tried making a dictionary of tuples which raises no errors; However gives
What is the best, if possible, way to make a dictionary and lookup matrices? |