2,038 reputation
1513
bio website
location
age
visits member for 4 months
seen 12 mins ago
stats profile views 55

May
18
comment How could I find the correct values for every array that would lead me to unique summation number for every unique chain?
...and based on the structure of your arrays, you might just want to make sure that the numbers in the square brackets of your sum total to the same number... (and you'll get 36+90+squarebracketnumber*10)
May
17
answered Adding custom GridLines to the “automatic” ones
May
15
comment A Symbol with Subscript and Superscript as an Axis Label
maybe you want to look at Subsuperscript[\[Epsilon], "9/2,4", "-"]
May
15
comment Normalize the PlotLegends and z values for two DensityPlot
glad you like it - I added an edit to fix things for ContourPlot. I hope this works for you!
May
15
revised Normalize the PlotLegends and z values for two DensityPlot
added 1353 characters in body
May
15
answered Normalize the PlotLegends and z values for two DensityPlot
May
14
comment How to plot filling under a curve?
I figured it was just copying J.M.'s answer, hence the comment. Thank you sir!
May
14
comment How to plot filling under a curve?
using this approach, you better Clear@x before defining pdf (or use pdf := PDF[NormalDistribution[], #] & and then pdf[x] in the plots) (or is there an easier way?)
May
14
comment How to plot filling under a curve?
looking at @J.M.'s answer in mathematica.stackexchange.com/questions/18964/… you could also do (avoiding show): With[{dist = PDF[NormalDistribution[], #] &}, Plot[{ConditionalExpression[dist[x], x < -2], dist[x]}, {x, -5, 5}, Filling -> {1 -> Axis}, PlotStyle -> ColorData[1, 1]]]
May
12
revised Simple problem with Manipulate and Plot
Formatting code
May
12
suggested suggested edit on Simple problem with Manipulate and Plot
May
11
awarded  Critic
May
9
awarded  Enlightened
May
9
awarded  Nice Answer
May
9
answered Is it possible to make v9 ignore case when completing names?
May
3
answered Don't pollute outside context when solving equation from the outside
May
3
comment Don't pollute outside context when solving equation from the outside
(I commented to repleace plotShow[f_,max_]:=Module[{},...] by plotShow[f_,max_]:=Block[{a},...] - this is ok only as long as a is empty)
May
2
answered How to normalize parts of matrix elements?
May
2
comment How to set the slider width inside Manipulate
you mean like that: {v, -3/2*Pi, 3/2*Pi, ControlType -> Slider, ImageSize -> 800}?
May
2
comment Calling blank arguments using enclosing functions
how about: Cases[set, x_?EvenQ :> 10 x]? (without knowing what you actually want to achieve)