0
votes
2answers
126 views

Symbolic Mathematics implementation in JAVA

I am trying to build an expression parser which evaluates the value of a mathematical expression. However the problem is for certain categories of expression which evaluates to an irrational number. ...
3
votes
5answers
710 views

Stitch together images with exactly matching (pixel to pixel) overlaps

I have a bunch of images in a folder that are effectively just pieces of one image that was broken into overlapping parts. How can I quickly and programmatically recombine these images to create the ...
0
votes
0answers
87 views

Call IMAP data from my google mail account

There was a nice post on Wolfram Blog on how to analyse email data from Google mail. It includes the code and works fine. Now I would rather analyse my mails themselves and not just their sent/income ...
4
votes
1answer
351 views

Calling ImageJ from Mathematica

From Mathematica, I wish to pass an image to an ImageJ plugin and get the result sent from ImageJ to Mathematica. JLink is the tool that will help, but I am familiar neither with it nor with ImageJ ...
4
votes
2answers
180 views

How to generate diacritized vowel table automatically?

I want to have the table of vowels with diacritics, but don't want to search symbol tables manually. Is it possible to generate this table by crossing the list of vowels and the list of diacritics ...
2
votes
1answer
1k views

Why doesn't the array() method of MappedByteBuffer work?

I am very new to Java, and trying to use Mathematica's Java interface to access a file using memory mapping (in hope of a performance improvement). The Mathematica code I have is (I believe) ...
2
votes
2answers
505 views

Mathematica, J/LINK, JNI, .dll

I am trying to get a Java method to work via J/Link from Mathematica. The problem is that the method calls a JNI (.dll file). Outside of Mathematica from the command line, all works great. But calling ...
1
vote
4answers
367 views

Image from Mathematica to Java

i try to get an Image out of Mathematica. I try to evaluate some Mathematica Code that uses Methods in Packages to generate Graphics. If i paste the Code to a Mathematica Notebook the Graphic is ...
11
votes
1answer
590 views

How to perform a complicated change of variables for a polynomial (in Mathematica)

I have an integer polynomial in four variables (w, x, y, and z) that I know can be written as an integer polynomial in these six variables: a = w z b = x y c = w^3 + z^3 d = x + y e = w^3 x + y z^3 ...
3
votes
2answers
463 views

Java and Mathematica interaction

How can I use Java within Mathematica? I have two files,GRASP.nb and GRASP.java, in the same folder (BTW: GRASP=greedy randomized adaptive search procedure). The GRASP.java file contains a method ...
5
votes
2answers
261 views

Getting a Mathematica image in Java

I am attempting to use J/Link to get an image from Mathematica to Java. I am able to print the image in Mathematica like this: Print[ Graphics[Raster[ img[[1]] ], AspectRatio->Automatic, ...
1
vote
5answers
848 views

Random numbers Mathematica vs Java

Which set is more "random"? Math.random() for Java or random for Mathematica? Java is in blue, Mathematica in red. numbers are from 0 to 50 (51?) EDIT: It's a histogram generated in Mathematica. ...
1
vote
3answers
244 views

Stuck on some angular arithmetic

Hallo, I'm having trouble writing a function: float turnToRequestedHeading(float initialHeading, float requiredHeading, float turnRate) I keep thinking there must be a clever way to do it, but it ...
1
vote
6answers
706 views

Tools to be used for Image processing [closed]

I'm Developing a CBIR (Content based Image Retrieval System) as part of my BE project. Which of the below mentioned tools will be better to be used for image processing?? 1-> Matlab 2-> ...
4
votes
1answer
290 views

suggestions for a people similarity algorithm

I want to get some suggestions for my "find similar people" algorithm :). I have one database where I store the following entities: Person, article, keywords. So for each person I have a collection of ...
3
votes
4answers
245 views

Which one of C# and Java is more easy and fast when interfacing with Statistics/Simulation Softwares?

First, I know almost nothing about the interfacing of this type and this is the first time, I'm trying it out. I am looking to use one of the Statistics/Simulation software either Maple or Mathematica ...
2
votes
1answer
611 views

Calling java project from Mathematica

Could you please give me a hint how can I invoke a java project (written in eclipse) from Mathematica? I want to give values generated by my Mathematica program as input to a java project, and use the ...
3
votes
6answers
726 views

Recurrence sequence in Java / Python / Mathematica

How can you write the following statement in the given languages? a(0) = 1 a_(n+1) = 1 - 1 / ( a_n + 3) I need to find the smallest value of n when a_n -> 0.732050.... My attempt in Mathematica ...
3
votes
2answers
860 views

Mathematica & J/Link: Memory Constraints?

I am doing a computing-intensive benchmark using Mathematica and its J/Link Java interface. The benchmark grinds to a halt if a memory footprint of about 320 MB is reached, since this seems to be the ...
2
votes
2answers
954 views

Mathematica's “Disable Dynamic” dialog kills Java

I use Mathematica with JLink for a research project, which involves a lot of computation. Mathematica is used as a graphical frontend for entering the parameters, and later plotting the results. The ...