How to generate a mesh with quadrilateral elements?
Why can't I plot Log[Gamma[x]] for x > 170?
Finding the number of odd quintinomial coefficients
Possible bug with RegionPlot
List processing
How to superimpose plots and graphics in the same coordinate system?
Unit tests for Graphics or FE boxes
How to generate a mesh with quadrilateral elements? I have the following code that generates a finite element mesh: Needs["NDSolve`FEM`"] order = 2; mesh = ToElementMesh[ DiscretizeGraphics[ GraphicsComplex[{{0, 4}, {5, 4}, {5, 0}, {8, 0}, {8, ...
- asked by Diogo (13 votes), answered by Young (12 votes)
Why can't I plot Log[Gamma[x]] for x > 170? http://mathematica.stackexchange.com/questions/137666/why-cant-i-plot-loggammax-for-x-170
Bug introduced in 11.0 For some reason I can't plot Log[Gamma[x]] for values of x larger than approximately 170: Plot[Log[Gamma[x]], {x, 130, 200}, PlotRange -> All] It works perfectly well ...
- asked by Felix (11 votes), answered by Szabolcs (12 votes)
Finding the number of odd quintinomial coefficients I am searching for the number of odd coefficients of $\qquad (x^4 + x^3 + x^2 + x + 1)^n$ for arbitrary $n$. It took some hours to compute the result for $n=12207$. There are $16333$ odd ...
- asked by Jenny_mathy (10 votes), answered by Carl Woll (15 votes)
Possible bug with RegionPlot http://mathematica.stackexchange.com/questions/137273/possible-bug-with-regionplot
RegionPlot[ImplicitRegion[(2 x - 1)/(x - 1) < 3/2, {x, y}], PlotRange -> {{-9, 9}, {-9, 9}}] Just checking whether anyone else can replicate this. Can anybody confirm such behavior and, ...
- asked by mathe (10 votes), answered by Jason B. (8 votes)
List processing http://mathematica.stackexchange.com/questions/137306/list-processing
Suppose I have a list that looks like the following (Town names and total distance to that town) resupply = { {"Coleman", 0}, {"Highwood House", 106}, {"Canmore", 229}, {"Exshaw", 245}, ...
- asked by Tom De Vries (9 votes), answered by Kuba (19 votes)
How to superimpose plots and graphics in the same coordinate system?
NB: I am aware that "plots" are graphics too, so the title would be more precisely worded if "graphics" were replaced by "non-plot graphics". EDIT: I have edited my original example to make the ...
- asked by kjo (8 votes), answered by Bob Hanlon (5 votes)
Unit tests for Graphics or FE boxes http://mathematica.stackexchange.com/questions/137541/unit-tests-for-graphics-or-fe-boxes
Consider the following expression with bad syntax: Graphics[{foo}] How can I detect the error and retrieve the error message programmatically, so I can check for it in unit tests?
- asked by Szabolcs (7 votes), answered by rcollyer (9 votes)