34,303 reputation
481209
bio website
location ND
age 29
visits member for 1 year, 4 months
seen 1 hour ago
stats profile views 3,146

contact details

Visit Mathematica.SE


May
14
comment White noise $\eta(t)$
The numerical methods used by NDSolve won't work correctly if you introduce noise.
May
14
comment Saddle Point in Matrix
Do we have a list of these "methods" that work on SparseArray? If no, I woulnd't mind a question on it.
May
14
comment Variable naming changes everything
@5xum Did you report this to support@wolfram.com as bug? Please do if you haven't yet and link back to this question.
May
14
comment How to plot filling under a curve?
@Misery That's a convenience feature. Compare Plot[1/x, {x, 0, 2}] with Plot[1/x, {x, 0, 2}, PlotRange -> All]. If PlotRange -> All were the default people would surely complain about this example I gave. It is the default, so people complain about other examples. We can't eat the cake and have it too ;-)
May
14
revised What is $ sign in Mathematica?
edited body
May
14
revised What is $ sign in Mathematica?
added 4 characters in body
May
14
revised How to deal with zero in NDSolve in mathematica?
added 26 characters in body
May
14
awarded  Favorite Question
May
13
comment Scaling the x-axis in ListLogLogPlot[] or ListLogPlot[] in lieu of DataRange
DataRange only works if you give a list of single values to these functions. It does not work if you give a list of value pairs.
May
13
comment NIntegrate/NSum with parameters
This is what you need, even though NSum is HoldAll.
May
13
comment Cannot call custom function loaded from script using C/C++ MathLink
Or why not drive the whole C program from Mathematica and use MLEvaluate for callbacks? It may simplify things further.
May
13
comment How can I change the Graph required data such as EdgeWeight,VertexWeight,EdgeCapacity,VertexCapacity in the Graph?
@Alex I am not aware of any solution for that in Mathematica. You'd have to write one. You can use some other program (Gephi? Cytoscape? not sure if they can do this), construct the graph, export it to GraphML or a similar format, then import it to Mathematica.
May
13
comment No anti-aliasing on BarChart3D?
@user7409 It sounds quite unlikely ... you mean that Plot3D[Sin[x^2 + y^2], {x, -1, 1}, {y, -1, 1}] does have antialiasing? Or only 2D graphics do?
May
13
comment No anti-aliasing on BarChart3D?
@SEngstrom Do you have it turned on in Preferences -> Appearance -> Graphics? If moving that slider does nothing then your hardware probably doesn't support it.
May
13
comment Computation results returned as image instead of text
It might be simpler to just reset your front end settings than figuring out what happened (and also take a look in your kernel init.m in case you put something there you may have forgotten about... )
May
13
comment Exporting plots
What Sjoerd suggests is done automatically by this palette. But for this type of plot exporting to a vector format will be better.
May
13
comment The plot of roots of polynomials
To the OP: other ways to separate the real and imaginary parts are these: Transpose[{Re[roots], Im[roots]}] and {Re[#], Im[#]}& /@ roots.
May
13
comment The plot of roots of polynomials
It's disguised as a control systems thing though.
May
13
answered How can I change the Graph required data such as EdgeWeight,VertexWeight,EdgeCapacity,VertexCapacity in the Graph?
May
13
comment How can I change the Graph required data such as EdgeWeight,VertexWeight,EdgeCapacity,VertexCapacity in the Graph?
Can you clarify if your question is about how to set the weights, or about how to set the weights using a graphical point-and-click interface?