The mathematica-8 tag has no wiki summary.
17
votes
2answers
408 views
Doing probabilistic calculations on a higher abstraction level
To the downvoters: this isn't a question about mathematics, it's a
question about the programming language Mathematica.
One of the prime characteristics of Mathematica is that it can deal with ...
17
votes
5answers
546 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
4answers
270 views
What are the benefits of switching from Rule and /. to OptionsPattern[] and OptionValue in a large application?
Old habits die hard, and I realise that I have been using opts___Rule pattern-matching and constructs like thisoption /. {opts} /. Options[myfunction] in the very large package that I'm currently ...
14
votes
4answers
249 views
Import data from URL
The St. Louis Federal Reserve Bank has a great set of data available on a variety of their web pages, such as:
http://research.stlouisfed.org/fred2/series/OILPRICE/downloaddata?cid=32217
...
14
votes
2answers
433 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 ...
13
votes
4answers
203 views
Monitoring Process of Cases[] on a Very Large Body of Information
I'm currently undertaking operations on a very large body of text (~290MB of plain text in one file). After importing it into Mathematica 8, I'm currently beginning operations to break it down into ...
12
votes
1answer
428 views
How to configure parallel remote kernels in Mathematica?
When I try to configure remote kernels in mathematica via Evaluation>Parallel Kernel Configuration ... then I go to "Remote Kernels" and add hosts. After that I try to Launch the remote kernels and ...
12
votes
5answers
466 views
What kinds of uses of SymbolicC (introduced in Mathematica 8) do you foresee? Are there any neat examples already?
Mathematica 8 introduced SymbolicC, a set of Mathematica functions that capture C language constructions in the familiar Mathematica tree-like fashion. Additionally, there are functions to write ...
10
votes
2answers
207 views
Does passing a variable with a large amount of data cost a lot of memory and time in Mathematica?
I am coding up an algorithm for constructing a suffix tree in Mathematica based on Ukkonen's algorithm.
The question I have is, will passing my entire tree structure (which I have stored in a list) ...
10
votes
2answers
169 views
How to define an arbitrary discrete probability distribution with a list of mass without warnings
In Mathematica 8, I want to define a discrete distribution with density mass given as a list. For example,
In[1] f = ProbabilityDistribution[{2/3, 1/3}[[x]], {x, 1, 2, 1}];
This seems to work. ...
10
votes
1answer
124 views
Saving FittedModel is buggy
With Mathematica 7 and 8 we have discovered that Mathematica fails to properly Save and Get the result of a fitting routine. I am hoping someone here knows: What is the best practice workaround for ...
9
votes
2answers
173 views
Using NProbability[] or Probability[] to work out the probability of 3 or more Heads from 4 coin tosses
Is it possible to work out the probability of 3 or more Head from 4 coin tosses using the Probability or NProbability functions.
This is not a question about the trivial answer to this problem, it is ...
9
votes
4answers
570 views
Making Mathematica packages
I'm building a package to help me write packages and their documentation. In this post I explained how to make a package and its documentation. In the answer I provided I describe how to build a very ...
8
votes
3answers
275 views
NIntegrate - why is it much slower in Mathematica 8 in this given case?
I have a Mathematica code where I have to evaluate numerically thousands of integrals similar to this one
NIntegrate[
(Pi*Cos[(Pi*(-2*x + y))/(1 + y)] + (1 + y)*(-Sin[(2*Pi*x)/(1 + y)] +
...
8
votes
3answers
163 views
Avoid repeated calls to Interpolation
I want to interpolate a function in mathematica.
The function depends on a parameter a, in fact it is the inverse of a function F which also depends on a, so I build my approximation as follows,
...
8
votes
1answer
204 views
Place an image on the XY plane in a 3D Plot in Mathematica
Please consider the following, from the followings from
Can we generate "foveated Image" in Mathematica
Clear[acuity];
acuity[distance_, x_, y_, blindspotradius_] :=
With[{\[Theta] = ...
8
votes
3answers
165 views
Is it possible to control style of digits in Mathematica?
I use the Constantia font (that came with Windows 7) for my book and would like to prepare graphics for this book using the same font in Mathematica. Problem is that that Constantia by default outputs ...
8
votes
3answers
436 views
GCC installed. Mathematica still won't compile to C
I'm running Mathematica 8 on a MacOSX, trying to compile even the simplest program to C. Anything having to do with C simply doesn't work in Mathematica. I have GCC 4.2 installed; I've even ...
8
votes
2answers
484 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, ...
8
votes
2answers
454 views
Mathematica: Transparent background with PNG
This is most likely a bug in Mathematica 8.0.1 and maybe other versions too. Lets try the following:
Table[
Export[
"Res_" <> ToString[r] <> ".png", Rasterize[
Style[x^2 + y^2, 40],
...
7
votes
3answers
137 views
How to stop barchart from hiding labels for data value 0 in Mathematica?
I use this to create a Bar Chart:
BarChart[
Reverse@data,
BarOrigin -> Left,
ChartLabels ->
Placed[{Reverse@labels, Reverse@data}, {Before, After}],
ChartElementFunction -> ...
7
votes
4answers
137 views
How can I show % values on the y axis of a plot?
In any Mathematica chart or plot how can I show % values on the y axis?
I may have data like this:
data = {{{2010, 8, 3}, 0.}, {{2010, 8, 31}, -0.052208}, {{2010, 9, 30},
0.008221}, {{2010, 10, ...
7
votes
2answers
106 views
Style dynamic value
Can I apply Style to the output of "Labeled" in the below ?
Manipulate[\[Lambda],
Control@{{\[Lambda], 401,
Style[" \[Lambda]", Black, Bold, 24]},
Range[401, 570, 1],
ControlType -> Slider,
...
7
votes
3answers
147 views
Evaluate[] seems to not work inside Button[]
Any idea how to get this to work?
y = {}; Table[Button[x, AppendTo[y, Evaluate[x]]], {x, 5}]
Result: Click [1] , click [2], get {6,6}
I'm trivializing the actual task, but the goal is to set what ...
7
votes
1answer
141 views
Export Graphics in Mathematica with Texture
Hello guys i've been having a problem with Mathematica 8.0.
When i export my Graphics3D to 3DS or any other format, texture is always missing. For example in the screenshot attached, , u'll see that ...
7
votes
3answers
140 views
Formatting usage messages
If you take a look at the Combinatorica package in Mathematica8 in (mathematicapath)/AddOns/LegacyPackages/DiscreteMath/Combinatorica.m you will find the definitions of functions. What I'm interested ...
7
votes
4answers
589 views
mathematica 8.0 and psfrag
I recently updated from mathematica 7.0 to 8.0, and have now encountered problem with replacing my plot labels with LaTeX code using the psfrag package. Everything worked perfectly with the earlier ...
6
votes
5answers
218 views
Is there any efficient easy way to compare two lists with the same length with Mathematica?
Given two lists A={a1,a2,a3,...an} and B={b1,b2,b3,...bn}, I would say A>=B if and only if all ai>=bi.
There is a built-in logical comparison of two lists, A==B, but no A>B.
Do we need to ...
6
votes
0answers
138 views
Initialization command
I noticed in the Cell > Cell properties menu an item I assume was recently added, but I really wouldn't know for sure (8.0.4/Win here). It's called Initialization Command:
Nothing about it to be ...
6
votes
1answer
140 views
Using a compiled listable function on non tensor lists
I am interested in using a Listable Compiled function on lists that need not be tensors. I want to understand why some functions work, where as others do not and shut down the kernel. Here is an ...
6
votes
1answer
140 views
quantiles of sums using copula distributions too slow
Trying to create a table for quantiles of the sum of two dependent random variables using built-in copula distributions (Clayton, Frank, Gumbel) with Beta marginals. Tried NProbability and FindRoot ...
6
votes
2answers
337 views
How do you work out Conditional Probabilities in Mathematica. Is it possible?
Can Mathematica do Bayes Rule conditional probability calculations, without doing the calculation manually? If so how?
I have been searching both the Mathemtaica doco and the web for a hint but ...
6
votes
2answers
179 views
Photo Mosaic in Mathematica: an example from 2008 doesn't work in Mathematica 8
I'm trying to get a Mathematica example working. It's the one on Theo Gray's blog.
I think that Mathematica must have changed since he wrote that code (May 2008), since I'm unable to get anything ...
6
votes
1answer
127 views
Why does InverseFunction[0 &]@0 return 33/10?
In Mathematica 8.0.1.0 on 32-bit Linux, the expression
InverseFunction[0 &]@0
returns 33/10. (The same occurs for other integer and rational values; I'm using 0 as an example.)
According to ...
6
votes
3answers
219 views
Mathematica: Can I match the BarChart Legend to the stacked bars?
I would like to have the vertical arrangement of colors in stacked bars match the arrangement of colors in the chart legend. But no matter what I try, they don't match. Here's the situation
...
6
votes
4answers
589 views
Can we show some Dynamics/CDF in PowerPoint or Keynote ?
I want to show some dynamic content in a presentation. However, I am not sure I have time by Thursday to make slides in the way I would like to within Mathematica.
Is it possible to have Dynamic ...
6
votes
0answers
224 views
Could the notebook StyleSheet change the code behaviour?
I'd like to ask if someone had such a problem before. I have version 8.01, on windows 7, 64 bit. SP1.
I have been trying to find why I get Mathematica kernel crash when I added a Tooltip[] command to ...
6
votes
4answers
170 views
Re-layout graph after small modification while preserving features of original layout
Is there a simple way to do the following in Mathematica 8?
Construct a graph, and display it using some graph layout.
Modify the graph slightly (e.g. add or remove an edge or a vertex).
Re-compute ...
6
votes
3answers
189 views
How can I programmatically access information about a 'Graph` object in Mathematica 8?
I'm trying to access information within a Graph object in Mathematica 8. For some reason, the Part command does not seem to work.
myGraph is the object I want to gain access to.
The first line below ...
6
votes
3answers
246 views
Function minimization with equality constraints in Mathematica 8
When using constraints with simple equality in Mathematica 8, minimization doesn't work. E.g.
FindMinimum[{x^2 + y^2, y == 1}, {x, y}]
works ok in Mathematica 6, but gives errors in version 8. ...
6
votes
2answers
298 views
A problem in Mathematica 8 with function declaration
This is a strange result with a function defined as "functionB" in this example. Can someone explain this? I want to plot functionB[x] and functionB[Sqrt[x]], they must be different, but this code ...
6
votes
3answers
183 views
Prevent auto-layout of Graph[] objects in Mathematica 8
Some types of objects have special input/output formatting in Mathematica. This includes Graphics, raster images, and, as of Mathematica 8, graphs (Graph[]). Unfortunately large graphs may take a ...
5
votes
2answers
143 views
What is the most convenient way to change options for Graph[] objects?
What is the most convenient way to change options such as VertexLabels in existing Graph objects? (Version 7 users note: Graph is new in Mathematica 8.)
With graphics, we can use Show for this, ...
5
votes
1answer
94 views
How can the state (active or not) of a scheduled task be queried?
What is the preferred way to check whether a scheduled task is active or not?
I'll outline my solution below, but I am not sure this is indeed the best way to do it.
A scheduled task is created ...
5
votes
3answers
130 views
What is the minimal difference in RGB color values which Mathematica renders and exports as different colors?
I was amazed when I found that Mathematica gives True for the following code (on 32 bit Windows XP with Mathematica 8.0.1):
Rasterize[Graphics[{RGBColor[0, 0, 0], Disk[]}]] ===
...
5
votes
3answers
261 views
How to Label Graph Edges with their weights
The help for EdgeLabels states:
However:
CompleteGraph[4,
EdgeWeight -> Range@6,
VertexShapeFunction -> "Name",
EdgeLabels -> "EdgeWeight"]
Results in:
So, no Edge Labels ...
5
votes
1answer
145 views
White area in Mathematica ListPlot
When I create and plot this list:
var = 2;
okList = {{0.8, var, 0.8, 0.8}, {0, 0.3, 0.6, 0.9}, {0, 1, 2, 3}};
lp = ListDensityPlot[okList, ColorFunction -> "SandyTerrain"]
or, unscaled, like ...
5
votes
1answer
120 views
ComponentMeasurements[ _ ,“Centroid”] results offset
I need to get the Center of Mass (Centroid) for components in a set of binary images with subpixel accuracy.
Mathematica 8 comes with a nice addition:
i = ...
5
votes
1answer
177 views
Mathematica: Text in Graphics3D relative to image coordinates
Mathematica documentation states: "Text in three-dimensional graphics is placed at a position that corresponds to the projection of the point {x,y,z} specified. Text is drawn in front of all other ...
5
votes
2answers
399 views
How to generate animated GIF of a Manipulate? 8.0.1
Exporting to animated gif seems to have changed in Mathematica 8.0.1?
I normally make animated GIFs of a manipulate by simply writing:
v=Manipulate[....]
then Export["foo.gif",v];
But now it does ...