| bio | website | |
|---|---|---|
| location | Sydney, Australia | |
| age | 42 | |
| visits | member for | 1 year, 4 months |
| seen | 4 hours ago | |
| stats | profile views | 1,463 |
Moderator of Mathematica.SE and Celtic goddess.
|
Feb 28 |
comment |
How can I control the number format of exported data? Post it anyway, if you like. You can't close your own question, but you can delete it. My suggestion is to post your answer and then we will close it as too localized. |
|
Feb 28 |
comment |
Differences between ParametricPlot3D and NIntegrate @DanielLichtblau if you would prefer to post that as an answer, I can reopen it if you want. |
|
Feb 27 |
comment |
Differences between ParametricPlot3D and NIntegrate No worries, it happens to us all. I've closed the question as too localised but up voted it too. It was a well specified question and you had done your homework. Welcome to Mathematica.SE and I hope we can be of help in future. |
|
Feb 27 |
comment |
Avoiding unnecessary computations within loops You could nest the Tables |
|
Feb 26 |
comment |
How to solve equations self-consistently No worries, we call it something different. I'm not sure I fully understood what you are trying to do, but it should be enough to get you started. |
|
Feb 26 |
comment |
How to solve equations self-consistently Well, I'm an economist, so I've no idea what the Bogoliubov deGene equations are. :) But I'll update my answer with a toy example. |
|
Feb 26 |
comment |
Problem with plot of discontinuous function of 2 variables and adding legend to a contourplot Your second ContourPlot is incomplete: what is s45? |
|
Feb 26 |
comment |
Why does animating images overlayed with graphics primitives take much longer than animating either individually? Could you please post a self-contained example so we can replicate your issue? |
|
Feb 25 |
comment |
Better alternatives for the Sound function? What have you tried? |
|
Feb 25 |
comment |
How to get a number, but not a list, of the dimension of your array? This might be useful: mathematica.stackexchange.com/a/7922/8 |
|
Feb 25 |
comment |
How to get a number, but not a list, of the dimension of your array? Or Length, if the first (outermost) dimension is what you want. |
|
Feb 24 |
comment |
Loop through a list and select elements @rm-rf - related, but none of the answers there actually talk about Select and Cases. |
|
Feb 24 |
comment |
Loop through a list and select elements Welcome to Mathematica.SE, user6078! As s0rce correctly points out, you don't need a loop here. Successful Mathematica programming requires you to get out of the loop-oriented mode of thinking. This earlier post might be helpful. |
|
Feb 24 |
comment |
Loop through a list and select elements Hope you don't mind, @s0rce, but I just added a bit from the answer I was about to post, to make it clear that loops are not needed in this case. |
|
Feb 22 |
comment |
How to add a common color legend to a grid of density plots? You could use Grid instead of GraphicsGrid to allow for different heights. |
|
Feb 21 |
comment |
Has anyone implemented cohomology for complex manifolds? @DavidSpeyer I confess I don't understand a word of either question or comment, but I'm pretty sure your comment would rate as an answer if you expanded on it a little more. |
|
Feb 20 |
comment |
PlotRange adjustments with BarChart I am not near a Mathematica installation so I can't check, but isn't this fixed using PlotRangeClipping -> True? |
|
Feb 20 |
comment |
What calendar is Mathematica using for dates in the distant past? @raxacoricofallapatorius Ok! Keep us posted. |
|
Feb 20 |
comment |
What calendar is Mathematica using for dates in the distant past? @raxacoricofallapatorius Please post that as an answer |
|
Feb 20 |
comment |
Why does memory run out when adding same-sized matrices in a loop? Would it make sense to use Nest rather than your Do loop, so you aren't overwriting your matrix? Or pre compute some of the points vectors and Fold in the non-null ones? also, why have you modularized i, j and k? You don't need to do that for iterators. |