Mathematics is the study of quantity, structure, space, and change. Any math questions on this site should be programming related.
0
votes
3answers
36 views
javascript or jquery to extract integer out of html markup
I'm trying to extract the second integer from inside the below markup.
<div class="orbit-slide-number">
<span>1</span>
of
<span>3</span>
</div>
If I ...
0
votes
0answers
34 views
Stack with chosing the right math parser
Right now I am working on a C# program, that will solve some calculus problems. My problem is how to parse an equation with more than one variable (I'm asking about a lib. or code), then get a list of ...
16
votes
4answers
4k views
JavaScript: Round to a number of decimal places, but strip extra zeros
Here's the scenario: I'm getting .9999999999999999 when I should be getting 1.0.
I can afford to lose a decimal place of precision, so I'm using .toFixed(15), which kind of works.
The rounding works, ...
0
votes
2answers
16 views
markov chains stationary distribution's condition about the init state
As a property of the markov chain, the stationary distribution has been widely used in many fields like page_rank etc.
However, since the distribution is just a property about the transition matrix ...
-1
votes
3answers
63 views
error in the code “floating point exception” [closed]
I am trying to solve a mathematics question, and this is my code for. It is raising a 'floating point exception' error. I cannot locate where i am wrong. pls help
#include<iostream>
...
-3
votes
1answer
38 views
Fastest way to calculate rectangle sides from area?
I need to calculate two integer sides of a rectangle from its area.In other words, I need to find two integers that multiplied give a number X, from the number X.
This is a lazy code that I wrote in ...
1
vote
2answers
94 views
Can someone please explain to me what the “|” symbol is doing in Javascript?
What does it do?
At first I thought it was a shorthand way of doing Math.max()
Every time I did (1 | 0) or (0 | 2985235), I got back the larger number.
However, I was wrong, as I soon found out when ...
0
votes
3answers
91 views
Code optimisation of math.asin function vb.net
I have the following line of code:
SomeDouble= constant1/ ((a * b) * (Math.Asin((c- a) / (a * d)) + constant2))
The two constants are different and calculated out of the loops, a - d are variables ...
0
votes
2answers
18 views
How to check if point is in line shadow
I can't really figure out how exactly to phrase this question, so I made a crude graphic explaining what I'm trying to ask:
Given a line comprised of two points, how would I go about checking if a ...
14
votes
10answers
21k views
How to convert number to words in java
We currently have a crude mechanism to convert numbers to words (e.g. using a few static arrays) and based on the size of the number translating that into an english text. But we are running into ...
0
votes
0answers
35 views
Calculate work progress in percentage of batches that contain tasks and task contain sub tasks [closed]
I am trying to calculate work progress in percentage. I have multiple batches, and each batch contains a set of tasks and each task also contains a set of sub tasks. Below code is the best I could ...
0
votes
0answers
18 views
how to install LAPACK on mac
I download the source file from http://www.netlib.org/lapack/ , and make & make install, but that only installs package, no header files is installed, anyone knows how to correctly install LAPACK ...
15
votes
8answers
7k views
How would you calculate all possible permutations of 0 through N iteratively?
I need to calculate permutations iteratively. The method signature looks like:
int[][] permute(int n)
For n = 3 for example, the return value would be:
[[0,1,2],
[0,2,1],
[1,0,2],
[1,2,0],
...
1
vote
3answers
333 views
Asp.net C# math problem
I'm trying to build a "simple" web app that calculates either a male or females body fat % based on the U.S. Navy's circumference formula. I have the majority of the app completed at this point. ...
6
votes
5answers
9k views
float/int implicit conversion
I'm doing multiplication and division of floats and ints and I forget the implicit conversion rules (and the words in the question seem too vague to google more quickly than asking here).
If I have ...
8
votes
6answers
721 views
Finding the Nth Twin Prime
I was trying to solve a problem on SPOJ. We are required to calculate the nth twin prime pair( primes differing by 2). n can be as large as 10^5. I tried a precalculation using a sieve, I had to sieve ...
1
vote
1answer
35 views
Find a maximum tree subgraph with given number of edges that is a subgraph of a tree
So a problem is as follows: you are given a graph which is a tree and the number of edges that you can use. Starting at v1, you choose the edges that go out of any of the verticies that you have ...
0
votes
2answers
162 views
mathematics behind modulo behavor
Preamble
This question is not about the behavior of (P)RNG and rand(). It's about using power of two values uniformly distributed against modulo.
Introduction
I knew that one should not use modulo ...
0
votes
2answers
33 views
Combination with a minimum number of elements in a fixed length subset
I have been searching for long but unable to find a solution for this.
My question is "Suppose you have n street lights(cannot be moved) and if you get any m from them then it should have atleast k ...
2
votes
6answers
5k views
Best way to convert total minutes into HH:mm format?
I get a return value from a web service in minutes, for example 538 minutes. I need to break this down in hours and minutes. What is the fastest way, in .net code and also VB6 code (two apps use the ...
0
votes
3answers
29 views
Generating invalid inequality combinations
This is a pretty obscure question but I thought I'd try my luck.
I need to generate invalid combinations of inequalities for a set of unknown variables.
For example, given a, b and c, I would like ...
0
votes
0answers
26 views
Discrete transfer fcn (Z-transform) - Simulink
in Simulink i have a simple constant block with value 1 , its connected to discrete transfer function(Z-Transform) with this parameters
Numerator=1
Denominator=[1 -1]
sample time=1
the function ...
1
vote
1answer
51 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
3answers
350 views
Converting float decimal to fraction
I am trying to convert calculations keyed in by users with decimal results into fractions. For e.g.; 66.6666666667 into 66 2/3. Any pointers?
Thanx in advance
7
votes
10answers
816 views
Generating ids for a set of integers
Background:
I'm working with permutations of the sequence of integers {0, 1, 2 ... , n}.
I have a local search algorithm that transforms a permutation in some systematic way into another permutation. ...
-4
votes
3answers
60 views
What is 2's Complement Number? [closed]
What is 2's Complement Number?
Why do we take 1's Complement and add 1 to it? Why don't we subtract 1 after taking 1's Complement?
Why do computers use 2's Complement?
2
votes
7answers
92 views
Brute force method finding prime numbers
I'm having trouble writing a program that finds the prime numbers between 2-50. My program right now finds "mostly" prime numbers but some non-prime numbers are included. I know there are way more ...
1
vote
5answers
94 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 ...
1
vote
1answer
60 views
Getters and math issue
I was attempting to experiment with getters in JavaScript, and tried to come up with the following to see just how getters would be useful in real world uses:
Object.defineProperty(Number.prototype, ...
0
votes
1answer
44 views
Simple Javascript Math Function- addition/not working?
This is my function:
var ans=(X*X)/(Y+Z);
When I enter 10, 20, and 10 - respectively- the addition bit comes out as 2010 and not 30.
How can I fix this?
0
votes
2answers
21 views
Keeping image ratio for its height using jQuery
Hey all i am trying to automatically get the height for an image. I can not seem to find any jQuery to do this?
What i am looking to do is something like it does in photoshop:
If the image was:
...
1
vote
2answers
43 views
Math library for JavaCard?
I'm currently working on a JavaCard project (v.2.2.2) and I need to compute values using square roots, logarithms, etc...
I know that the Math class isn't available in JavaCard API and wonder if ...
0
votes
5answers
42 views
How do I displaying strings?
How can I get this code to work? I can't make it puts "+" or puts "]":
puts " Enter an option:"
puts "------------------"
puts "1] Learn to FOIL"
puts "2] Learn to factor"
puts "3] Practice!!!!!!!"
...
0
votes
1answer
22 views
CraftyJS how to calculate vector between 2 sprites?
I am a noob in game programming and not so good at Maths, I am trying to write a 1945 style shooting game, all been good so far but I am in a bottle neck that I cannot figure out how to make enemy aim ...
0
votes
1answer
46 views
Graph Visualization Represented in a Circle: How To
Graph Visualization represented in a Circle: How To
I am trying to represent a plotted graph line around a circle.
Where the center is 0
Intervals of 45 degrees / 8 values.
Greatest value = 1 / ...
0
votes
2answers
30 views
n-squared / 2 chunking for parallel processing
I have an n-squared loop that I want to break up into chunks to run concurrently. The loop looks like this:
for i = n to m
for j = i to m
// Do something
Edit based on comment:
Concrete ...
0
votes
0answers
32 views
Calculate percentage of a fragments depth position relative to a range
In my fragment/pixel shader I am trying to calculate a fragment's depth position in percent [0-1] in an given range. What I have is a bunch of shapes (there is no relative data given from them) but ...
0
votes
0answers
21 views
Maths trick to get azimuth value from one unique origin point
I'll try to explain you better what's my problem.
First of all i calculate the screen_adjustment as you showed me and i display it on my screen to know when i move my display in which case i am :
...
10
votes
7answers
2k views
Get the Surface Area of a Polyhedron (3D object)
I have a 3D surface, (think about the xy plane). The plane can be slanted. (think about a slope road).
Given a list of 3D coordinates that define the surface(Point3D1X, Point3D1Y, Point3D1Z, ...
-3
votes
1answer
30 views
Are null matrices of different dimensions equal? [closed]
For example: I have a null matrix with 2*2 dimensionality and a null matrix with 2 * 3 dimensionality. Are they equal? If not why?
-1
votes
1answer
45 views
Calculate euclidean distance between two vector (bag of words) in python
I use a a dictionary to represent word count in a article
For example {"name" : 2 , "your": 10, "me", 20} to represent that "name" appears twice, "your" appears 10 times and "me" appears 20 times.
...
0
votes
0answers
10 views
Horizon Based Ambient Occlusion Math [migrated]
I'm not very familiar with computer graphics.
Currently I'm reading a paper "Image-Space Horizon-Based Ambient Occlusion - Louis Bavoil, Miguel Sainz, Rouslan Dimitrov"
Here's the problem
In the ...
33
votes
4answers
39k views
Java Integer division: How do you produce a double?
int num = 5;
int denom = 7;
double d = num / denom;
This results in 0. I know you can force it to work by doing
double d = ((double) num) / denom;
but there has to be another way, right? I don't ...
2
votes
2answers
55 views
How to round up a decimal?
How can I use round() to round a number to the superior number as soon as there is a decimal?
For example:
1.00001 = 2
1.1 = 2
1.4785834975 = 2
1.00 = 1
1.99 = 2
3.01 ...
1
vote
2answers
477 views
javascript rotation translation function
Does anyone have a translate function for x/y positions after rotation in javascript?
for instance:
this.mousex = event.clientX - this.el.offsetLeft;
this.mousey = event.clientY - this.el.offsetTop;
...
-1
votes
3answers
70 views
Mathematical expressions string parsing in JAVA
I am a bit stuck on how I would execute a statement such as "5 + 10 * 2 / 5". I'm new to JAVA and have not the slightest on how to go about it. any ideas?
I need to write a method that takes the ...
3
votes
3answers
8k views
Convert from Radians to Degrees in Java
I'm trying to get the alpha angle in degrees from x,y when user creates an object.
I wrote the following constructor:
public class Point
{
private double _radius , _alpha;
public Point ...
2
votes
6answers
146 views
Shorter solution to if,else if,else if
I'm looking for a way to shorten this code up and avoid repeating code and if statements. What I'm doing is creating a calculator that searches strings for operators "* / + - " and executes them ...
0
votes
1answer
19 views
Check to see if box fits in another box
Given LxWxH of a box A, and LxWxH of a box B, how can I do a simple check to see if A fits in B (with 90 degrees rotations if necessary)? I'm trying to avoid checking all the possible permutations. ...
0
votes
1answer
189 views
Find Mean, Standard Deviation and Variance of two co-ordinates
I am doing a mini project and i am stuck with a code. My project is based Positioning.
I have used a GUI to get the original and estimated position of a target.
I have placed 8 nodes to test.
In ...









