New dedicated Mathematica SE site: http://mathematica.stackexchange.com/ Wolfram Mathematica is a computer algebra system and programming language from Wolfram Research. The programming language is a term-rewriting functional programming language strongly influenced by lisp. Not to be confused ...
70
votes
26answers
7k views
What is in your Mathematica tool bag? [closed]
We all know that Mathematica is great, but it also often lacks critical functionality. What kind of external packages / tools / resources do you use with Mathematica?
I'll edit (and invite anyone ...
14
votes
2answers
2k views
Customizing Mathematica shortcuts
Is there a place I can view/change global shortcut options like Command+9 (turn into Input style)?
In particular I need a faster way of creating bulleted lists. It's style "Item" in Cell context menu ...
10
votes
5answers
582 views
Preventing avalanche of runtime errors in Mathematica
A typical situation I run into when notebook grows beyond a couple of functions -- I evaluate an expression, but instead of correct answer I get Beep followed by dozens of useless warnings followed by ...
6
votes
2answers
307 views
Save Mathematica code in `FullForm` syntax
I need to do some metaprogramming on a large Mathematica code base (hundreds of thousands of lines of code) and don't want to have to write a full-blown parser so I was wondering how best to get the ...
25
votes
2answers
1k views
Tree data structure in Mathematica
I have used mathematica mostly as a mathematics workbench and for writing relatively small ad-hoc programs. I am however designing a system which I intend to program in Mathematica. I need to store ...
7
votes
2answers
2k views
How do I label different curves in Mathematica?
How can I label each of these lines separately :
Plot[{{5 + 2 x}, {6 + x}}, {x, 0, 10}]
32
votes
3answers
3k views
Performance tuning in Mathematica?
What performance tuning tricks do you use to make a Mathematica application faster?
Matlab has an amazing profiler, but from what I can tell, Mathematica has no similar functionality.
20
votes
3answers
941 views
The clearest way to represent Mathematica's evaluation sequence
Good day,
WReach has presented here a nice way to represent the Mathematica's evaluation sequence using OpenerView. It is much more clear way to go than using the standard Trace or TracePrint ...
11
votes
2answers
636 views
The best way to construct a function with memory
Good day,
I have some very slooooow and complicated function, say f[x,y]. And I need to construct detailed ContourPlot of it. Moreover the function f[x,y] sometimes fails due to lack of physical ...
8
votes
1answer
902 views
Import big files/arrays with mathematica
I work with mathematica 8.0.1.0 on a Windows7 32bit platform. I try to import data with
Import[file,”Table”]
which works fine as long as the file (the array in the file) is small enough. But for ...
13
votes
5answers
601 views
Efficiently Working with (and generating) Large Text Files
As part of my work, I am working with very large text files and, in part, analyzing them for word and phrase frequency. I am running into difficulties of computing time, memory restrictions, and in ...
20
votes
2answers
607 views
Best practices in error reporting (Mathematica)
What are the best practices / most common / idiomatic ways to report errors in Mathematica?
In particular, what are the best ways to report errors about incorrect arguments to a function? Checking ...
13
votes
1answer
561 views
Plot using With versus Plot using Block (Mathematica)
I want to describe an issue I have been having with Plot using With to keep defined parameters 'local'. I am not necessarily asking for a fix: the problem I have is one of understanding.
Sometimes I ...
7
votes
2answers
302 views
Saving plot annotations
Yesterday, while adding some timing plots to the "Optimally picking one element from each list" question I was once more remembered of a mathgroup posting I did a couple of years ago ("Keeping plot ...
721
votes
4answers
151k views
How do I find Waldo with Mathematica?
This was bugging me over the weekend: What is a good way to solve those Where's Waldo? ['Wally' outside of North America] puzzles, using Mathematica (image-processing and other functionality)?
Here ...
52
votes
3answers
1k views
Upload images to Imgur from Mathematica
Here's a challenge to all mathematica tag followers. Let's make it a lot more convenient to insert images into SO post from Mathematica by creating an imgur uploader.
How can we create a function ...
20
votes
2answers
627 views
How do I access the StackOverflow API from Mathematica
I was wondering the other day if StackOverflow had an API I could access from Mathematica, and apparently it does: "Saving plot annotations"
What's the best way to get data from StackOverflow into ...
11
votes
5answers
1k views
Mathematica: Rasters in 3D graphics
There are times when exporting to a pdf image is simply troublesome. If the data you are plotting contains many points then your figure will be big in size and the pdf viewer of your choice will spend ...
7
votes
1answer
240 views
How to export graphics in “Working” style environment rather than “Printout”?
I have learned recently that Export in Mathematica uses by default the "Printout" screen style environment rather than "Working" when exporting to PDF. It sometimes results in FontSize fluctuations in ...
2
votes
3answers
205 views
Executing code in v.5.2 kernel from within v.7.01 session through MathLink
I have Mathematica 7.01 and Mathematica 5.2 installed on the same machine. I wish to be able to evaluate code in the v.5.2 kernel from within Mathematica 7.01 session. I mean that running Mathematica ...
2
votes
3answers
366 views
How to abort evaluation of a sequence of inputs?
By default pressing Alt+. or calling Abort[] within the evaluation causes abort of the currently evaluating input. But when working in the FrontEnd we usually send to the kernel a sequence of inputs. ...
14
votes
2answers
567 views
Integrating notebooks to Mathematica's documentation center
If you have been using Mathematica for a while you probably have grown attached to the documentation center. There is always something new that you find in those pages. Let it be options for a ...
19
votes
5answers
741 views
Minimal effort method for integrating C++ functions into Mathematica
As of Mathematica 8, what is the minimal effort way to integrate an existing C++ function into Mathematica?
I think we have these:
MathLink (it was quite long ago I used it last time)
communication ...
15
votes
1answer
392 views
Correct way to cap Mathematica memory use?
Under a 32-bit operating system, where maximum memory allocated to any one program is limited, Mathematica gracefully terminates the kernel and returns a max memory allocation error.
On a 64-bit OS ...
12
votes
9answers
634 views
Matching brackets in a string
What is the most efficient or elegant method for matching brackets in a string such as:
"f @ g[h[[i[[j[2], k[[1, m[[1, n[2]]]]]]]]]] // z"
for the purpose of identifying and replacing [[ Part ]] ...
10
votes
2answers
275 views
SaveDefinitions considered dangerous
SaveDefinitions is a nice option of Manipulate. It causes Manipulate to store any definitions used for its creation inside the Manipulate panel. A Manipulate made this way can be copied to an empty ...
7
votes
3answers
326 views
How to define part of a Manipulate control variable definition to reduce code duplication
This is a little related to this question
Define control as variable in Mathematica
But the above question did not answer my problem, as it talks about the full control definition. (I also tried ...
12
votes
7answers
502 views
Appending to the rows of a table
I have a two dimensional list and a one dimensional list. I would like to insert the 1D list into the 2D list as an additional column. For example:
array = {{a,1,2},{b,2,3},{c,3,4}};
column = ...
11
votes
2answers
322 views
Replace inside Held expression
I wish to make functional replacement inside Held expression like this:
f[x_Real] := x^2;
Hold[{2., 3.}] /. n_Real :> f[n]
=> Hold[{4., 9.}]
But I get Hold[{f[2.], f[3.]}] instead. What is ...
10
votes
4answers
1k views
How to prepend a column to a matrix?
Ok, imagine I have this Matrix: {{1,2},{2,3}}, and I'd rather have {{4,1,2},{5,2,3}}. That is, I prepended a column to the matrix. Is there an easy way to do it?
My best proposal is this:
...
8
votes
5answers
732 views
How to insert a column into a matrix, the correct Mathematica way
I think Mathematica is biased towards rows not columns :)
Given a matrix, to insert a row seems to be easy, just user Insert[]
(a = {{1, 2, 3}, {4, 0, 8}, {7 , 8, 0}}) // MatrixForm
1 2 3
4 ...
8
votes
2answers
701 views
How to dynamically generate mathematica code?
I want to make a mini programming language in mma. From a textfile to Module(s) in a Package. Ideally I should be able to generate the package and modules from within Mathematica by functions in ...
8
votes
3answers
776 views
Delete repeating list elements preserving order of appearance
I am producing flat lists with 10^6 to 10^7 Real numbers, and some of them are repeating.
I need to delete the repeating instances, keeping the first occurrence only, and without modifying the ...
8
votes
2answers
326 views
Preventing evaluation of Mathematica expressions
In a recent SO question three different answers were supplied each using a different method of preventing the evaluation of the Equal[] expression. They were
Defer[]
Unevaluated[]
HoldForm[]
...
6
votes
6answers
1k views
Mathematica: How to obtain data points plotted by plot command?
When plotting a function using Plot, I would like to obtain the set of data points plotted by the Plot command.
For instance, how can I obtain the list of points {t,f} Plot uses in the following ...
7
votes
2answers
671 views
Mathematica: 3D wire frames
Does Mathematica support hidden line removal for wire frame images? If this isn't the case, has anybody here ever come across a way to do it? Lets start with this:
Plot3D[Sin[x+y^2], {x, -3, 3}, {y, ...
3
votes
2answers
593 views
object oriented mathematica programming
I was wondering how to do it in general, what are the best strategies etc. I have seen some solutions and some of them look really hard/tedious to use. The one I worked on used pure functions to ...
4
votes
1answer
359 views
Setting up a “struct” in Mathematica safely
The question on making a record like in Mathematica has been discussed in few places, such as Struct data type in Mathematica?.
The problem with all these methods, is that one loses the ability, it ...
25
votes
4answers
2k views
Using Mathematica to build Presentations and Documents
I use Mma mainly to solve relatively small problems.
I want to start using it also to prepare my presentations and docs, but I am having troubles to learn how to do it from the embedded help, and I ...
10
votes
3answers
705 views
Implementing a Quadtree in Mathematica
I have implemented a quadtree in Mathematica. I am new to coding in a functional programming language like Mathematica, and I was wondering if I could improve this or make it more compact by better ...
12
votes
1answer
537 views
Tail call optimization in Mathematica?
While formulating an answer to another SO question, I came across some strange behaviour regarding tail recursion in Mathematica.
The Mathematica documentation hints that tail call optimization might ...
8
votes
2answers
321 views
Watching for new Mathematica questions using Mathematica and the StackOverflow API
Unless Mr.Wizard is on vacation, it is pretty difficult to beat this phenomenon which seems to be gifted with omnipresence and omniscience. How can we outdo him using Mathematica and the StackOverflow ...
12
votes
1answer
516 views
Upload to ifile.it through Mathematica
I was wondering whether it's possible to upload a file from Mathematica to ifile.it. I have seen the API of ifile.it, however, I still don't know how it works. Furthermore, the closest example I've ...
12
votes
5answers
820 views
Performance difference between functions and pattern matching in Mathematica
So Mathematica is different from other dialects of lisp because it blurs the lines between functions and macros. In Mathematica if a user wanted to write a mathematical function they would likely use ...
8
votes
4answers
1k views
Consistent size for GraphPlots
Update 10/27: I've put detailed steps for achieving consistent scale in an answer. Basically for each Graphics object you need to fix all padding/margins to 0 and manually specify plotRange and ...
16
votes
1answer
592 views
Mathematica: Unevaluated vs Defer vs Hold vs HoldForm vs HoldAllComplete vs etc etc
I'm bewildered by all the built-in Mathematica functions that purport to prevent evaluation in some way: Unevaluated, Defer, Hold, and over half a dozen of the form Hold*. The Mathematica ...
12
votes
3answers
585 views
Syntax Coloring In Mathematica
How could user-defined function symbol such as f in
f[x_] = 2 x
or variable symbols such as lotto in
lotto = Table[2, {10}];
be colored automatically ?
In Syntax coloring on M8 no option is ...
12
votes
5answers
489 views
Setting up diagnostic error messages in large Mathematica projects
Whenever I create a large Mathematica project I run into this problem: Preventing avalanche of runtime errors in Mathematica, i.e., Mathematica's error message are opaque, archaic, and legion.
The ...
10
votes
3answers
509 views
What does “upvalue” mean in Mathematica and when to use them?
To me, g /: f[g[x_]] := h[x] is just verbose equivalent of f[g[x_]] := h[x]. Can you raise an example that you have to use /:?
8
votes
2answers
608 views
How Plot[] works in mathematica
I considered the following function:
sin[x_] := Module[{},
Print["x=", x];
Sin[x]
]
in Mathematica. Next, I tried to plot it using:
Plot[sin[t], {t, 0, 2 Pi}]
Surprisingly, the first three ...