Tagged Questions
2
votes
3answers
407 views
Java: Data structure for caching computation result?
I have an expensive computation, the result of which I'd like to cache. Is there some way to make a map with two keys? I'm thinking of something like Map<(Thing1, Thing2), Integer>.
Then I ...
1
vote
5answers
87 views
How to fix computation errors?
I'm trying to write a program that reads 2 numbers from the user and divides them. Here is the code I have so far:
import java.util.Scanner;
public class divideByZero {
public static int ...
0
votes
2answers
63 views
Odd result of a floating point computation in java [closed]
Possible Duplicate:
Java floating point math - (conversion for feet/meters)
Java floating point arithmetic
I am running into the following problem in java.
This computation (0.196f * ...
0
votes
1answer
44 views
Java deployment to a cloud for fast computation
I have an application written in Java that performs some straightforward but time consuming calculations analysing some texts, printing results to the terminal. I want to speed up the process by ...
0
votes
4answers
4k views
Which java-library computes the cumulative standard normal distribution function?
For a project I have a specification with formulas, I have to implement. In these formulas a cumulative standard normal distribution function exists, that takes a float and outputs a probability. The ...