| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 2 months |
| seen | 6 hours ago | |
| stats | profile views | 396 |
A tribute to the ONE TRUE LOGO :)

|
11h |
answered | Having used Mathematica as a “gateway” language, where to from here? |
|
1d |
revised |
How to replace a variable that was assigned a value before added link |
|
2d |
comment |
How to insert big list of Data in DB? @subbu Ahh, I forgot, that this is no extension to be recognized. Try ExportString[data, "MX"] (or the zipped version ExportString[data, {"GZIP", "MX"}] |
|
2d |
comment |
How to insert big list of Data in DB? Note that you can also do ExportString[data, "mx.gz"] to export your data into a binary format. If some other (non Mathematica) applications need to access the data, there is also a lot of other portable binary formats (HDF5 for example). |
|
May 19 |
comment |
How to set image DPI? Have a look at: reference.wolfram.com/mathematica/ref/ImageResolution.html |
|
May 19 |
comment |
How to asynchronously download 100000 urls in an efficient way No problem. I'm on windows too. There are native ports of these tools. |
|
May 19 |
comment |
How to asynchronously download 100000 urls in an efficient waycurl or wget perhaps with GNU parallel should be perfectly sufficient. |
|
May 17 |
comment |
Adding custom GridLines to the “automatic” ones @Bernd Actually it should probably be Prolog instead of Epilog |
|
May 17 |
comment |
Adding custom GridLines to the “automatic” ones If you add code for a small working example, more people will likely be inclined to help you. |
|
May 14 |
comment |
When using NMinimize[…,Method->“DifferentialEvolution”] is an “iteration” different than a “step”? It's best to post a working self-contained example. |
|
May 14 |
comment |
Mathlink and multithreading You can probably run N mathematica kernels and link to them. |
|
May 14 |
comment |
How to replace Do loops by Inner Yes, I gathered that. But I was wondering why you don't want to get the reputation (or why you care about this). Is this answer to simple? (Personally I think that every useful answer deserves to be upvoted) |
|
May 14 |
comment |
How to replace Do loops by Inner Why community wiki, if I may ask? |
|
May 14 |
comment |
What is $ sign in Mathematica? You're welcome. You were right. Using $ at the end of a name can cause problems:
f = Function[{x}, Function[{y}, x + y]]; o2 = f[2 y$];
o1 = f[2 y]; {o1[a], o2[a]} |
|
May 14 |
revised |
What is $ sign in Mathematica? added 96 characters in body |
|
May 8 |
comment |
Equivalent of MATLAB's “hold on” function +1 for ` Print[Dynamic[...]]`! Great idea:) |
|
Apr 30 |
comment |
Error trying to open a notebook in Wolfram Workbench @Pillsy Hmm good question. I would definitely add this somewhere! You can't add it here (right now) as we would first have to reopen the question. I guess you can add it as an answer to the other question. Then it can be moved by the admins if necessary. |
|
Apr 30 |
comment |
How can Private functions be made completely opaque? Khm, what about code completion or just plain old Names["Test1`*`*"] |
|
Apr 29 |
comment |
Montgomery Modular Exponentiation Probably best to try with the C version. gmplib.org |
|
Apr 29 |
comment |
How to work with Interpolated Functions? Look in the help next time: reference.wolfram.com/mathematica/ref/… |