0
votes
3answers
52 views

How to get the endpoint of a line in Java given the midpoint and the other endpoint

I know how to do the maths on paper but I am struggling to work out how to take potential negative values into account. Given 2 locations: endpoint(x1, y1) and midpoint(x2, y2) Find the other ...
1
vote
0answers
42 views

Calculating height on heightmap

Like in topic. I have heightmap generated and I want to calculate exact height on single heightmap square. Each square have 4 heights, one for each corner. For example: 0---4 4---4 ----- ----- ...
0
votes
2answers
90 views

Counting the number of solutions for a given sudoku puzzle?

I'm developing a web based sudoku game that allows the user to custom made his own sudoku board. I need a way of telling the user the number of possible solutions that the board he assembled has. The ...
2
votes
2answers
52 views

Derive number of number pyramid from index number

The problem goes like this: Suppose I have a number N, whose value is used to create a number pyramid. A number pyramid for N= 4 would look like this: 3 2 3 1 2 3 0 1 2 3 Equivalently, ...
0
votes
1answer
31 views

Translate point coordinates to image

How to translate Cartesian point coordinates to BufferedImage pixels from the top left corner? The question is in the context of plotting 2D math functions. Let the image of height h and width w be ...
0
votes
3answers
54 views

Convert arithmetic string into double in Java

I have a program where the user inputs 6 doubles, and the program outputs every combination of operators that can go in-between the doubles as 1024 separate strings. Here are the first two results if ...
1
vote
5answers
90 views

Counters that flip signs in java

Ok so im trying to make a program and i need to have the counter start at -3 and go down by 2, but every other number has to be a positive: for example: -3, 5, -7, 9, -11, 13, -15, 17, -19,... any ...
0
votes
3answers
87 views

Lightweight Map implementation Java (little memory overhead)

I am currently writing some code in java meant to be a little framework for a project which revolves around a database with some billions of entries. I want to keep it high-level and the data ...
2
votes
1answer
95 views

RegEx in java to replace a String

I've been trying to replace this mathematical function x^2*sqrt(x^3) to this pow(x,2)*Math.sqrt(pow(x,3)) so this is the regex /([0-9a-zA-Z\.\(\)]*)^([0-9a-zA-Z\.\(\)]*)/ pow(\1,\2) it works ...
-6
votes
2answers
49 views

How to make if statement if value is not given [closed]

I am working on an Android project and got stuck. I have an editable text field in layout and when user input some value I want to make some mathematical actions with that Integer value. Now, it ...
1
vote
4answers
88 views

Check if 2 numbers are within 1% of each other

public static double squareRoot(double num) throws IllegalArgumentException { if (num < 0.0) throw new IllegalArgumentException("Number cannot be negative."); ...
0
votes
0answers
39 views

Place points around z axis

I want place points around z axis. Right now I am just placing the points around xy plane using following code snippet: int points = 8; double x = 5; double y = 7; double radius =100; AbsolutePanel ...
0
votes
1answer
41 views

Invert color result int of inverted division

I am working with RGB, and I am having problems with this math. Unless I am reading the quote below wrong, I need to take the result of this which is a value that looks like 0.01234 and invert it. bgc ...
0
votes
2answers
42 views

Breakout ball collision in libgdx

I'm currently trying to make a breakout clone using java and libgdx. I'm currently experiencing trouble getting the ball to bounce off of the blocks at the appropriate angle. In short the problem I'm ...
10
votes
3answers
153 views

Why is fast inverse square root so odd and slow on Java?

I'm trying to implement Fast Inverse Square Root on java in order to speed up vector normalization. However, when I implement the single-precision version in Java, I get speeds about the same as 1F / ...
0
votes
3answers
94 views

Why won't this quadratic equation return negative numbers?

This quadratic equation will not return negative numbers in the string that I've determined it to return. Here's the equation: public class QuadraticEquation { String final0; public String ...
-2
votes
5answers
113 views

Generate valid equation from four numbers by placing arithmetic operators [closed]

I'm trying to solve various puzzles of recursion and one problem I came across is Equation Generator. I'm unable to understand how to solve this problem. The problem statement is like this. You ...
1
vote
1answer
69 views

get distance between 2 points and figure out speed

I would have thought this is trivial, but here at the end of the day my brain is dead. getting distance in meters seems to work, miles seems to be broken, and speed seems to be broken. any help ...
-2
votes
0answers
38 views

Get the x and y of the middle of the red line - trig

I'm trying to get the x and y of the middle of the red line, I'm doing something wrong. Hows your trig? The GUI is supposed to analyze triangles, I wanted the angle to float always at the middle of ...
0
votes
1answer
47 views

Convert audio stereo to audio byte

I've trying to do some audio processing, I'm really stuck with a stereo to mono conversion. I looked in internet regarding stereo to mono conversion. As far I know, I can take the left channel, right ...
0
votes
2answers
93 views

Get coordinates of a point in 3D space from angles its vector makes with axis and its length

I have a magnitude of the vector pointing somewhere in 3D space from the origin (0x, 0y, 0z). I also have an angle that projection of the vector in X and Z axis makes between itself and the Y axis. In ...
8
votes
4answers
160 views

How to generate a distribution of k shots on n enemies

I am developing a space combat game in Java as part of an ongoing effort to learn the language. In a battle, I have k ships firing their guns at a fleet of n of their nefarious enemies. Depending on ...
0
votes
2answers
43 views

Android Calculating values to pass to onClick method

I think I'm getting confused about the activity lifecycle here, I'm trying to perform a simple weights conversion, nothing spectacular. the user enters a value, selects whether they want it ...
4
votes
5answers
104 views

How can I round manually?

I'd like to round manually without the round()-Method. So I can tell my program that's my number, on this point i want you to round. Let me give you some examples: Input number: 144 Input rounding: 2 ...
0
votes
2answers
79 views

Android Java using a switch / case to calculate different percentages

I'm having a bit of a conundrum.. I have a variable called "results" which is the result of a previously calculated variable and then appended either +10%, +20%, 0%(the same as it is..) -10% and so ...
-2
votes
1answer
61 views

Trouble with java arithmetic [closed]

I am making a side scrolling shooter in java and I am trying to figure out the arithmetic behind knowing where bullet would impact on a wall. So far i have decided that using the slope intercept form ...
0
votes
1answer
28 views

Angle facing other way libgdx

I figured out the convertion of x and y of my cursor to angle however the problem is my sprite is facing the oposite direction. here is the code @Override public void create() { bida = ...
0
votes
3answers
80 views

how can I discard the largest and smallest numbers when I calculate the arithmetic mean?

I want ask a quesiton about discarding the largest and smallest number when the programme calculates the arithmetic mean ? This is my code sample ; public static void main(String[] args) { int ...
0
votes
3answers
67 views

How can i calculate the arithmetic mean in my code sample?

I write a code sample about calculate the aritmetic mean,i did lots of thing but some parts are missing/incorrect. This is my code sample : public static void main(String[] args) { int i; ...
1
vote
3answers
75 views

Is there formula to calculate what day is for anyday? I got stuck by Project Euler # 19

I am doing Project Euler #19. Here is states: You are given the following information, but you may prefer to do some research for yourself. 1 Jan 1900 was a Monday. Thirty days has September, April, ...
0
votes
0answers
34 views

Check for intersection between line segments in path [duplicate]

I have tested several ways how to detect if two lines within a path intersects with each other, but none of them have worked for me. And this last code that I show below, doesn't work either because ...
0
votes
1answer
58 views

Trouble with intersection between line segments

I have a path stored as points in an arraylist and I want to check if the line segments are intersecting. For some unknown reason it's not working! I don't get any message in the LogCat despite that ...
0
votes
1answer
49 views

Error when iterating arraylist with points of lines to check for intersection

I'm developing some code to check for intersection between lines. I have all points of the lines stored in an arraylist and below I have some code to iterati throw the arraylist to compare two lines ...
0
votes
2answers
64 views

Calculating the value of a mathematical function in Java

I have this function and I was trying to get a list of all the calculations. f(x) = (100)(1.1)^X How do I calculate this out in Java. I tried a for loop to get the value of x and the end result of ...
3
votes
3answers
106 views

Arbitrary precision multiplication, Knuth 4.3.1 leading zero elimination

I am working with the basic Knuth 4.3.1 Algorithm M to do arbitrary precision multiplication on the natural numbers. My implementation in Java is below. The problem is that it is generating leading ...
0
votes
3answers
95 views

How to check whether 2 lines segments intersect?

How do I check whether 2 line segments, L1(p1,p2) and L2(p3,p4), intersect with each other? I do not need the intersection point, I just need to know whether they intersect or not. Since my ...
0
votes
4answers
38 views

Java - unexpected result when rounding a double/float to 2 decimals

I encounter a problem when round a double to 2 decimals. I know this questions have been asked in many places. But my question is slightly different and I cannot find it in other places. So far as I ...
-4
votes
1answer
59 views

Calculate from string [closed]

I Have string from config file eg: '((#/@)*10)*$/x' In code I must replace all that symbols (@,#,$,x) to some int from code. eg: '((100/30)*10)*3/1' And calculate it. Must also works with powers. ...
0
votes
1answer
81 views

Calculation of intersections between line segments

There's a lot of questions about intersections between line segments here at stackowerflow and here is one more! Sorry, but I need help to understand how to calculate intersections. I have read ...
1
vote
4answers
61 views

Calculate number of years and days in mintues

Here is my code: public class numberOfYears { public static void main(String args[]){ String minsString = JOptionPane.showInputDialog("Enter numbers of minutes:"); double mins = ...
-4
votes
4answers
82 views

Modulus operation in Java [closed]

int modx = 101; int xy = -4/-3; int answer = xy%modx; System.out.println("answer= "+answer); The program return me the answer 1 but when i check the answer in "PARI GP" the answer should be ...
1
vote
1answer
56 views

Negative results occurs when calculate cross-track distance(distance between line segment and point on sphere)

I referred here and calcualte the the distance between a line segment and a point on a sphere.I used cross-track distance formula as, double distanceBetweenPointAndLineSegment = ...
1
vote
3answers
53 views

Randomize when something happens

I have implemented a power up in my game and I want it to have an 10% chance to apply to the player when it kills a zombie. I have tried using this code every time the players bullet hits an zombie, ...
-4
votes
0answers
53 views

Calculating the expression with complex numbers (StringIndexOutOfBoundsException) [closed]

I have StringIndexOutOfBoundsException, when my program try to run. Where is mistake? In input we have the expressions as (a+-bi)+-*/(c+di)+.... In output should be result of this expressions. ...
10
votes
2answers
110 views

Java special math functions library

I am looking for a Java library to calculate gamma, beta, erf, bessel special functions (and some related) for including into our own formula parser. Numeric accuracy is the main priority - it's a ...
0
votes
3answers
91 views

Code to calculate angle not working

I am trying to calculate the angle in degrees between tow points in java. This is the code i am using to calculate the angle. public static double calcAngle(Point.Double p1, Point.Double p2) { ...
1
vote
2answers
83 views

How to find Minimum Distance between a Point and a Line on sphere

How to find Minimum Distance between a Point and a Line on sphere.I had this calculation here.But it is in 2D. I need on sphere.
0
votes
1answer
62 views

What happening with Math.sin and Math.cos in Java? And how fix it?

I'm trying to implement rotation matrix. But a have a very strange effect: [How it look like] http://i.stack.imgur.com/UawYi.png This is my code: public void rotation(PointF point, double a) { ...
-2
votes
4answers
165 views

Determine prime number by user input using recursive method

I need to create a program in Java that determines if a number is prime. The user should enter any number, and the program will determine if it's prime or not, and display "not prime" or "prime." My ...
0
votes
2answers
56 views

Reverse Number in a Range

I've got a servo which turns opposite to the number I get from a program. The numbers I get from the program are between 37...113. I need to convert the 37 to its opposite side. So 37 becomes 113, 38 ...

1 2 3 4 5 27