User Portlet User Portlet

Discussions
Would this do the job, even if it's a bit hacky and no longer looks much like a tree? g = gameTree3["Visualization"]; Graph[EdgeList[ g] /. ((VertexShapeFunction /. Options[g, VertexShapeFunction])[[1]])[[1, 1]], ...
I'm not sure I fully understand, but would this be along the lines of what you're looking for, except for the simplified parameter values and some arbitrary choice of range? StreamPlot[{-b x y/n, b x y/n - k y} /. {b -> 3.4, k -> 3, n ->...
Raspi, 1. Wolfram Research cares deeply about our customers' feedback and aims to take it into consideration as much as possible. 2. Any estimate on when any suggestion may get picked up or not will be next to impossible to make, be it now or...
Hi Terezija, Have you tried holding Shift+Ctrl during the start-up in order to reset your frontend preferences, assuming that they may have gotten mangled up? Compare: ...
Hello Rohit, Thank you very much for bringing the incorrect notification on a supposedly fixed GeoHistogram issue to our attention. Reviewing all available information, it turns out that GeoHistogram had two very similar problems in Wolfram...
I'd say the indexing of vertices in the AdjacencyMatrix is simply not the same as when you created your Edges list. Looking at your outside-the-square-in-the-same-column/row parts of your MatrixPlot, I would suspect that the vertices to which the...
Assuming I didn't make any stupid mistakes: - NIntegrate -> Integrate, evaluate by itself first, get analytic expression - replace z with Min expression in there - replace last condition with y 0.645833, y -> 0.354167}}, {0.177604, {x...
First import: data = Import["myfile.xls"] where the table in each Excel file sheet becomes a matrix in data's outermost list. Then slice and feed: RegionCentroid[Polygon[Partition[#, 3]]] & /@ First[data] where I assumed that...
Honest, you are trying to convert a list of rules, such as listOfRules = {x->2, y->3} into a simpler list {x, y}, with x and y replaced, if I understand correctly. Two suggested approaches: A) ReplaceAll (short notation /. ) to apply...
Hi Michael, an idea that may be sufficient is to select the inline cell, then Cell > Convert To > StandardForm Display / TraditionalForm Display. As far as I can tell it is still not exactly the looks of an Output cell, but maybe closer to what...