Questions dealing with optional named arguments of Mathematica functions.
1
vote
1answer
34 views
Bound on number of function evalulations in FindMinimum
I am minimizing a nonlinear constrained problem using FindMinimum. The problem involves about 200 variables and the function is a black-box which cannot be ...
2
votes
0answers
64 views
How do I incorporate metadata using Export?
I have
Export["file.png",codeThatMakesAGraphicsObject[],"PNG"];
and want to embed some specific metadata information. Is there a simple way to do that?
Note ...
0
votes
1answer
81 views
How to make an index optional?
Can I define a relation between variables, such that the expression will also be evaluated (then assuming all indices are equal) when no index is given?
$$ x_i + y_j = \delta_{ij} ...
0
votes
1answer
57 views
Workaround for automatic replacement of “\r” to “\n”
When I run the following code in an empty notebook
SetOptions[EvaluationNotebook[], testOption -> "\n\r"]
and then open the notebook in Notepad, I find
...
2
votes
0answers
47 views
Why does AbsoluteOptions give the wrong answer for ListPlot? [duplicate]
I'm trying to get the PlotRange from a ListPlot graphic:
...
9
votes
1answer
118 views
Can Manipulate controls have the option Appearance -> “Labeled” by default?
I was wondering if there's a way to tell Mathematica to use the option Appearance -> "Labeled" for all Manipulate commands by ...
5
votes
1answer
143 views
How to make a filled Ellipsoid?
I want to make a filled Ellipsoid, but it seems Filling options doesn't work in Graphics ...
2
votes
1answer
30 views
Options CellLabel not showing
I'm back with the labels and tags questions!
Here is my code:
mb = CreateDocument[Null, ShowCellTags -> True];
In the new document, I create a new cell, add ...
2
votes
1answer
38 views
Label cell goes away with SelectionEvaluate
When a given cell has a label (given with the CellLabel->"label" option of the cell), then this label disappears after calling
SelectionEvaluate[ nb ]
when the ...
5
votes
3answers
101 views
How to disable differential styles/markers/etc. for multiple entities?
For functions that can produce multiple "style-able" entities, Mathematica by default will give each such entity a different style. Similar conventions apply to other features, either by default, or ...
12
votes
1answer
201 views
Method -> {“AxesInFront” -> False} for Graphics3D
I'm aware of two ways to manage positioning of Axes for Graphics3D: AxesOrigin and ...
14
votes
2answers
344 views
How to get the real PlotRange using AbsoluteOptions?
The problem in general involves the unreliable behaviour of AbsoluteOptions when option values are implicitly specified (e.g. ...
1
vote
1answer
49 views
Append CellTag to list of Cells
As suggested in this earlier post, I restate my question here about appending CellTags option to existing list of Cells.
What I ...
1
vote
1answer
44 views
SetOptions and Cell
I'm trying to change the CellLabel of Cells using
SetOptions[Cell, CellLabel -> "test"]
or
...
23
votes
2answers
304 views
Chart illustrating options that affect Graphics/Graphics3D objects
In Mathematica there is a seemingly never-ending list of parameters that affect the appearance of Graphics and Graphics3D ...