3
votes
8answers
490 views
Abstract algebra and Programming
I am going to start learning Abstract Algebra- Groups, Rings,etc. I am interested to know any programming language, if at all which can help me learn/try the concepts I learn in th …
2
votes
8answers
244 views
Mathematical Programming Languages
Given my previous questions about the the usage of AMPL.
Are there any other programming/scripting languages that are strictly meant for mathmatical processing?
For example: Ma …
4
votes
3answers
70 views
Targeted Simplify in Mathematica
I generate very long and complex analytic expressions of the general form:
(...something not so complex...)(...ditto...)(...ditto...)...lots...
When I try to use Simplify, Mathe …
2
votes
3answers
44 views
Possible to put equation’s expression near its graphic representation?
Is it possible that when I Plot a function in Mathematica, it will automatically put near it it's equation(i.e. y = 2x) or even some other text?
At first glance I don't find any o …
2
votes
1answer
46 views
Finding previously defined messages in Mathematica
Mathematica by default defines a lot of useful messages for signaling common errors, like functions being called with the wrong number of arguments or files not being found. In gen …
2
votes
1answer
46 views
Mathematica Interpolation Engine - What does mathematica use for it? [closed]
Anyone has knows what might be the algorithm behind it's ListPlot3D interpolation engine?
2
votes
1answer
41 views
Mixed Scaled and ordinary coordinates in Mathematica?
Is it possible to specify a position in terms of Scaled coordinates in one direction and use the ordinary coordinates from my data points in the other direction on the plot? In ot …
1
vote
2answers
46 views
Getting started with Mathematica packages
Can someone offer some advice on how to get started with mathematica packages?
I can save the following in a file named "Foo.m". When I run the input cell in that file, I can see …
0
votes
2answers
460 views
Exporting a plot as an image in Mathematica on a machine without X11 (ie, without involving the frontend).
Consider the following dialog with the command-line interface to the kernel:
$ math
Mathematica 6.0 for Linux x86 (32-bit)
In[1]:= p = Plot[x^2, {x,-1,1}]
Out[1]= -Graphics-
In[ …
3
votes
1answer
35 views
Optimization with Mathematica: Use BinCounts in Objective Function
Using Mathematica, I need to optimize a function that is defined in terms of BinCounts;
the arguments that I want to maximize over define the bin cutpoints.
I think the problem i …
2
votes
1answer
39 views
Export custom formatted expressions from Mathematica
How can I get Mathematica to export/save/write out a text file with proper Fortan77 formatting, i.e., 72 columns and a continuation marker on the sixth column.
I am using Mathemat …
3
votes
3answers
59 views
Multiple assignment between lists in Mathematica 7
Suppose there are two lists a = {a1, a2, a3} and b = {b1, b2, b3}, and I want to write an assignment statement to make a1=b1,a2=b2,a3=b3 which only refers to a and b:
Thread[a = b …
0
votes
1answer
94 views
Images have a fubar color palette when generated under Xvfb instead of normal X.
When generating a png image file in Mathematica on a linux box running X, there's no problem. Doing the same on a linux machine without X but instead Xvfb the png generates fine b …
0
votes
1answer
96 views
Mathematica Programing Graph Plot
I have a file with 40,000 data points. In Matlab I can use the plot command to draw the plot:
aaa = Import('file Name');
plot(aaa,mesh)
How do I do it in Mathematica? I tried:
…
4
votes
1answer
108 views
Mathematica running out of memory
I'm trying to run the following program, which calculates roots of polynomials of degree up to d with coefficients only +1 or -1, and then store it into files.
d = 20; n = 18000; …
