User Portlet
Featured Contributor
| Discussions |
|---|
| This is *very* neat! Indeed a perfect application of graph coloring. Very nicely explained, very pedagogical. Now the world has 3 ways of solving them. This one is probably the fastest since the Mathematica function FindVertexColoring does all the... |
| i think the problem is that Frame is not a Graphics objects. The coordinate issue (which is a bug I guess) can be solved by doing: Placed[… , {Scaled[{1, 1}], Scaled[{1, 1}]}] And not-so-nice solution would be to add the 'box' manually: ... |
| My condolences to the family and friends of Michael. I only briefly interacted with him during the Wolfram Tech. Conf. and during the corona crisis on the fluid mechanics of droplets. I always enjoyed it when he joined a livestream. What I remember... |
| This page is now updated specifically saying what has been fixed. |
| Also the use of For loop is very awkward and can be much simplified for readability: data = ParallelTable[ pf = \[Rho][r]; pf /= Tr[pf]; ef = Chop[Eigenvalues[pf]]; fdiag = 0; fSp = 0; Do[ ... |
| Very cool! Thanks for sharing. Many of my solutions are similar in nature. I;m still thinking about automating 24 part 2… |
| hmm strange, but I don't know why it runs much slower to be honest. Despite having a Home Edition license I think you can submit a bug here: https://www.wolfram.com/support/contact/?topic=feedback |
| Very cool! Very nice coloring. I had done something similar some time ago. I made a function that can give you all kinds of configuration of points. Have a look at... |
| The easiest would just be removing the absolutes: yourexpression /. Abs -> Identity |
| This should work: ... |