871 reputation
218
bio website
location
age
visits member for 1 year, 3 months
seen 5 hours ago
stats profile views 68

May
11
comment Convert Graph to Graphics
+1 Thanks. I imagine that Show probably calls GraphConvertToGraphics internally.
May
11
comment DumpSave for the forgetful
+1 In many situations this can be a more organized way to do it.
May
11
comment DumpSave for the forgetful
I suggest that you also save the notebook you had been working on, and that you use this same notebook to store and load the DumpSave. That way you can resume your workflow exactly where you left off, and you won't have to remember the name of your variables.
May
11
comment Labeled and Graph don't mix?
I think that with Bottom the label falls below the plot area and thus does not show... try setting the option PlotRange to show a larger vertical area.
May
11
comment Overlapping accurately Images and Graphics (without loss of resolution)
+1 This is simpler.
Apr
29
comment FrameLabel not printing completely
really? One would think that one of the most valued contributors to our forum has the latest gear! ;)
Apr
29
comment FrameLabel not printing completely
I have submitted a bug report to Wolfram. Did you submit one on your issue? What did they reply?
Apr
29
comment FrameLabel not printing completely
related: mathematica.stackexchange.com/q/18988/534
Apr
29
comment FrameLabel not printing completely
+1 FontOpacity -> 0.999 works here too.
Apr
28
comment FrameLabel not printing completely
@Silvia If you write those two sentences as an answer, I'll accept it.
Apr
28
comment FrameLabel not printing completely
@Silvia Right! Silly me ;)
Apr
28
comment FrameLabel not printing completely
@Silvia That works. The only (small) issue is that it missplaces the label a little bit.
Apr
26
comment FrameLabel not printing completely
Interestingly, exporting to .pdf shows no issue. But .png and .jpg have the same problem.
Apr
26
comment FrameLabel not printing completely
@BrettChampion It doesn't happen without the Style wrappers. I edited to include version and OS.
Apr
16
comment Trying to prove that $x\sin(\frac{\pi}{x})\ge\pi \cos(\frac{\pi}{x})$ for $x\ge 1$
If you don't time for a full proof, then plotting is a very practical solution. It removes all doubt, and can even help you see how to obtain the proof.
Feb
22
comment How to add a common color legend to a grid of density plots?
Is there a way to place the color bar horizontally instead of vertically?
Jan
20
comment FindShortestPath with negative weights isn't working
That's too bad. I wanted to find the shortest simple path between two vertices in an undirected graph with negative weights.
Jan
20
comment FindShortestPath with negative weights isn't working
Oh, I thought you meant simple cycles. To sum up, FindShortestPath with Method -> "BellmanFord" will work with negative weights with a directed graph without negative weight cycles, and FindShortestPath with Method -> "Dijkstra" will work with positive weights only. For any other graphs it will not work.
Jan
20
comment FindShortestPath with negative weights isn't working
It should work, because there are no cycles now.
Jan
20
comment FindShortestPath with negative weights isn't working
Then FindShortestPath[RandomTreeWeighted[10], 3, 7,Method -> "BellmanFord"] also returns unevaluated. Please tell me if you can reproduce this too.