Wolfram Mathematica is a computer algebra system and programming language from Wolfram Research. Ask your Mathematica questions at http://mathematica.stackexchange.com/
2
votes
1answer
24 views
Mathematica ShowLegend weird text alignment
I'm trying to get a nice legend for several of my plots, however, I can't get the text alignment of the Legend to change and it's doing all sorts of weird things.
The first thing is that the text ...
8
votes
5answers
501 views
Difference between == and === in Mathematica
I was under the impression that = is an assignment, == is a numeric comparison, and === is a symbolic comparison (as well as in some other languages == being equal to and === being identical to. ...
-3
votes
0answers
27 views
Mathematica matrix not recognised [closed]
I'm trying to find the eigencvectors of an 11*11 matrix. But I'm unable to get it to recognise my Matrix. Can someone tell me what is wrong with this?
A = {
{0, 1/34, 2/13, 1/5, 1/32, 0, ...
3
votes
1answer
42 views
How can I extract all monomials (without coefficients!) from a polynomial in mathematica?
Mathematica provides MonomialList[f] to get all monomials in f:
MonomialList[(x+y)^2]={x^2,2xy,y^2}
But what I need is {x^2,xy,y^2}, how can I make it?
3
votes
0answers
32 views
How to type a capital 'E' in Mathematica 9 using 'ToExpression' and 'TeXForm'? [migrated]
I am trying to use Mathematica's ToExpression[] combined with TexForm to type the Einstein's famous result: E = mc^2. Now this is dead easy in LaTeX, the code is:
E = m c^2
and it should generate ...
0
votes
1answer
26 views
Strange NDSolve Error in Mathematica
I am trying to numerically solve a long list of ordinary differential equations using NDSolve as follows:
sols = NDSolve[deqs, operons, {t, 0, 1000}];
where deqs holds the list of differential ...
1
vote
3answers
70 views
How to combine two lists to plot coordinate pairs?
I have read x-data (from text files) into list1, and y-data similarly into list2:
list1 = { 0.0, 0.172, 0.266, ..}
list2 = {-5.605, -5.970, -6.505, ..}
How do I combine the two lists in order ...
-1
votes
1answer
31 views
Find condition number of a function with multi variables [closed]
I would like to find the Condition number of a function (f(x)) with multi variables (x).
which can be calculated by
C(x) = ||x||*||f'(x)||/||f(x)||
Here my function is f(x) = a*exp(b(x-s)) with ...
0
votes
0answers
42 views
Mathematica variable naming changes everything [closed]
I am having a rather unusual problem I do not understand with Mathematica where renaming one of the variables of my function causes the function to stop "working". Here is the example of the code ...
0
votes
1answer
39 views
Mathematica: part assignment
I'm trying to implement an algorithm to build a decision tree from a dataset.
I wrote a function to calculate the information gain between a subset and a particular partition, then I try all the ...
-1
votes
1answer
45 views
Recursive definition of a vector
I would like to define a list using a for loop and I need to do it using a function of the n-iterate.
I have:
Initialization
In[176]: Subscript[y, 0] = {1, 2, 3}
Out[180]: {1,2,3}
The function:
...
6
votes
4answers
852 views
Complex Error Function in Mathematica
The complex error function w(z) is defined as e^(-x^2) erfc(-ix). The problem with using w(z) as defined above is that the erfc tends to explode out for larger x (complemented by the exponential going ...
1
vote
0answers
43 views
Is there a general way to do symbolic integrations in real domains, just like the way maple do[Assumptions don't work]
Integrate[m^2/((x - m^2)^2 + y^2), m]
mathematica gives me a complex-valued reuslt, but maple 17 gives me what I want, see the attached picture.
I tried using assumptions, but it doesn't work.
In ...
0
votes
1answer
34 views
Mathematica SpringEmbedding Parameters
I'm trying to construct a 3D graph in Mathematica, where the actual lengths of the edges are important. Taking a look at their documentation for graph drawing ...
7
votes
4answers
1k views
How to Label Graph Edges with their weights
Warning! I posted the question when Mathematica v 8.0 was the coolest kid. The bug has been solved as of version 9.0.1
The help for EdgeLabels states:
However:
CompleteGraph[4,
EdgeWeight ...
0
votes
1answer
40 views
Using data returned form Tally command in Mathematica
I have a small piece of code to generate sequences, which is ok.
List = Reap[
For[i = 1, i <= 10000, i++,
Sow[RandomSample[Join[Table["a", {2}], Table["b", {2}]], 2]]];][[2, 1]];
...
4
votes
1answer
599 views
define private function in a mathematica package
I'm not sure I got how to define private functions right.
When I'm writing a package mathematica, I just do this:
BeginPackage["myPackage`"]
myPublicFunction::usage="myPublicFunction blahblahblah";
...
2
votes
1answer
1k views
Can't use Export() with Mathematica Trial Version
Every time I try to use Export, I get this Error:
General::unavail: Export is not available in this version of Mathematica.
Why isn't Export() available with the Trial version?
Thanks.
2
votes
1answer
44 views
Mathematica won't find SerialIO package
I'm following a guide from The Mathematica Journal that describes how to use Mathematica with the Lego Mindstorms NXT. I have some trouble getting started and got stuck with the SerialIO package.
I ...
0
votes
1answer
38 views
FindFit returns a weird nrnum
again!
I am trying to fit a list of data points with Mathematica. The problem is that it gives me an error that the function is complex when it tries to fit even though I made the assumption that all ...
0
votes
0answers
11 views
Mathematica: using mprep in Ubuntu (mprep won't run)
I'm using Mathematica 8 in Ubuntu 13.04 (Raring Ringtail). I'm trying to use the supplied program "mprep", which is used to create applications that link to MathLink. However, whenever I try to run ...
0
votes
0answers
30 views
Compiling Mathematica 8 mathlink.h using gcc
I'm trying to get my program to talk to Mathematica using MathLink. I'm using cygwin, and mathematica 8.0.
I can compile the equivalent of the "AddTwo" program and use it successfully by using the ...
13
votes
4answers
431 views
How to find a function's rth derivative when r is symbolic in Mathematica?
I have a function f(t)=2/(2-t). It is not so hard to get the rth derivative at t=0 (i.e. 2^(-r)*r!) without using Mathematica. In the case of Mathematica calculation, I can get the r-th derivative ...
0
votes
1answer
27 views
Is it possible to use patterns in $Assumptions
I was trying to use patterns in $Assumptions as
$Assumptions = f[x_] > 0
Simplify[Sqrt[f[y]^2]]
Unfortunately this doesn't work.
I want to define a class of assumptions thus is it possible to ...
0
votes
1answer
52 views
Unable to plot a surface defined implicitly
I have the following function, which is a bit complicated:
X1=Function[{r,\[Theta],l},4Re[(N[Integrate[E^(-(r^2+R^2)+2 I R l/r) (r+I R)^(2 l)
(LaguerreL[1/2 (-l+n),l,(r^2+R^2)])^2 ...
0
votes
0answers
60 views
(python)Sage for physicists [closed]
I am a physics undergrad and thinking of learning a CAS. Though, mathematica is a standard choice, I would prefer a free open source software, because of a fetish, and the fact that I can't use ...
6
votes
2answers
2k views
Custom ColorFunction/ColorData in ArrayPlot (and similar functions)
This is related to Simon's question on changing default ColorData in Mathematica. While the solutions all addressed the issue of changing ColorData in line plots, I didn't quite find the discussion ...
-1
votes
1answer
49 views
Mathematica: FindFit gives a solution, but it is not correct?
I want to fit data:
data={{30.,3837.71},{93.75,3900.6},{300.,3962.19},{937.5,4040.79},{3000.,4113.21},{7500.,4174.15}};
To the following model:
model = H0*(1 - ...
-4
votes
0answers
27 views
Rescale axes in mathematica [closed]
I want to plot f = 0.3*x (1 - x/20) - (x^2/(1 + x^2)) on the interval [0,25] in mathematica. But to make the figure clearer near the origin, I need to re-scale both x and y axes as x/(x^(3/4)) and ...
3
votes
4answers
186 views
Optimize parts extraction
I have this specific function to extract parts of a list in the form: Give[list, elem] returns the part of list that corresponds to the position of elem in a global $Reference variable (if defined). I ...
2
votes
3answers
208 views
ode integration in python versus mathematica results
Edit:
So I found out that NDSolve for ODE is using Runge Kutta to solve the equations.
How can I use the Runge Kutta method on my python code to solve the ODE I have below?
From my post on text files ...
65
votes
15answers
28k views
Best open-source Mathematica equivalent
What is the best open-source equivalent for Mathematica? My requirements are:
(most important) Must be a real computer algebra system (CAS). Notably, I don't want Matlab clones -- I want something ...
-3
votes
0answers
35 views
How to call mathematica in C code? [closed]
I use mathematica 9 run on windows 7.
I use visual studio to write C program.
Is there any easiest way to learn how to call mathematica in C code?
I need very simple step by step instructions.
...
2
votes
1answer
50 views
Integrating Norm of vectors
I have two vectors which I want to integrate in Matematica. Let the vectors be
r = {x, y};
Q = {x1, y1};
then I write this command
Integrate[
1/Norm[-((a*Q)/c) + r],
{a, 0, 1},
Assumptions ...
0
votes
1answer
38 views
Mathematica lists in a weird format
Hi I have the following simple program:
joint = Table[0, {i, Length[labelnames]}, {j, 16}];
For[time = 1,
time < Length[topics], time++
Do[
joint[[l, t]]++, {l, labelsForTime[time]}, {t, ...
0
votes
2answers
26 views
mathematica replacement rule subexpression
I have using replacement rules:
First I have defined some simple formulas using SetDelayed
a:=b+c
d:=a/e
Evaluating the following equation gives a result as expected:
In[20]:= (d^2 + ...
0
votes
0answers
7 views
Mathematica 3-D plot (discrete/continous) [migrated]
I want to visualize a 3-D function in Mathematica, Say F(x,y,z)=0, But there is a small difference here with typical z=f(x,y). Because of it's complexity, I decide to consider the z parameter as a ...
37
votes
5answers
2k views
Version control of Mathematica notebooks
Mathematica notebooks are, of course, plaintext files -- it seems reasonable to expect that they should play nice with a version-control system (git in my case, although I doubt the specific system ...
2
votes
0answers
57 views
Importing big Excel file to Mathematica
I am trying to import a big xlsx file to Mathematica 9, but I always get the error
Import::nojmem: There was insufficient Java heap space for the
operation. Try increasing the Java Virtual ...
6
votes
4answers
2k views
How to invoke a matlab function from mathematica?
I would like to call a matlab function from mathematica. How best to do that?
I have found an ancient post on Wolfram site describing a way to do this, is this still the way to connect the two?
3
votes
2answers
819 views
Import[] for MAT file containing struct arrays - Only imports first element?
I am trying to import data from a saved MATLAB struct array, but it seems that Mathematica is only importing the first element.
MATLAB
blank = struct('x', [], 'y', [], 'z', []);
data = repmat(blank, ...
1
vote
2answers
1k views
how to store the data from each loop into an array or table form?
For[n = 1, n < 6, n = n + 1,
For[m = 1, m < 6, m = m + 1, abc = doc[[n]];
kk = doc[[m]];
v =vector[abc, kk];
vl = VectorLength[v]]]
I want to store the data from each loop into an ...
1
vote
1answer
58 views
Faster alternative to NSolve
I have an equation, which I am trying to solve using NSolve in Mathematica. Here is how I do it:
T == (0.000242895 E^(-(2.09472*10^11/(5.70068*10^8 +
7.76206*10^12 T))))/(1 +
...
0
votes
1answer
72 views
To solve differential equation of bass diffusion model by Mathematica [closed]
This time is that I first post question.
Because I want to do some research about applying bass diffusion model to software reliability.
So I tried to derive this model step by step,
When I tried to ...
1
vote
0answers
39 views
Mathematica: Compile NSolve, NMinimize and other numerical functions
Is there a way to compile those functions using Compile[]? it seems that Mathematica always fails in that.
I have purely numerical functions inside NSolve and NMinimize, and it still doesn't work.
A ...
3
votes
3answers
1k views
Plotting linear inequalities in Mathematica
I have linear systems of inequalities in 3 variables and I'd like to plot these regions.
Ideally, I'd like something that looks like objects in PolyhedronData. I tried RegionPlot3D, but the results ...
1
vote
2answers
31 views
Extracting matching object from MatchQ
I'm trying to implement my own version of the Coefficient function in Mathematica, for learning purposes. This is what I wrote so far:
myCoefficient[fun_,var_,pow_] := Module[ {f,coeff},
f[var] = ...
0
votes
0answers
58 views
Mathematica: Nest for large value of n [closed]
I am working on a problem to find the Feigenbaum constant. In this problem I have to get f^{2^n}(1/2) with f(x) = kx(1-x). I use "Nest" to get f^{2^n}(1/2) but it takes Mathematica forever to run with ...
2
votes
1answer
74 views
Convert code from Matlab to Mathematica
I need to convert some code from Matlab to Mathematica.
At some point I have
fspecial('gaussian', 11, 1.5)
I am confused about what will be equivalent to write in Mathematica.
In Matlab I get:
...
0
votes
0answers
23 views
FindRoot::nveq: The number of equations does not match the number of variables in FindRoot[a,{r[1],{0,1}}]. >>
I found an article about calibrating interest tree in BDT model with source code in mathematica. However there is a bug or maybe I am just to big newbie. Code is below:
Clear[discount,pv,r,theta]
...

