0
votes
1answer
16 views
Simple math question with LinQ, simple Join query, Nulls, etc.
I have 2 tables
1. Client
2. Operations
Operations can result in: Credits or Debits ('C' or 'D' in a char field) along with date and ammount fields.
I must calculat …
0
votes
2answers
60 views
Find a point between two point
I two concentric circles on the screen and I want the circle on the inside to move around while the user drags their finger around the outside of the larger circle. This means that …
4
votes
1answer
53 views
Rotating coordinates around an axis
I'm representing a shape as a set of coordinates in 3D, I'm trying to rotate the whole object around an axis (In this case the Z axis, but I'd like to rotate around all three once …
0
votes
3answers
118 views
Recursion and permutations
Hi.
Let's say that we have two boxes of pencils (in first box just blue and in second just red pencils). So the question now is, in how many ways can we put x red and y blue penc …
0
votes
1answer
57 views
Javascript: Why is my code alerting to nothing?
I've written the following:
var pages=["[www.facebook.com] Facebook is cool. ","[www.bbc.co.uk] British broadcasting corporation. "];
function findScoreC2(s){
var scores=[];
…
0
votes
3answers
37 views
Math in Safari (especially iPhone)
Is there an easy way to display math in the Safari web browser? My main target is the iPhone safari.
2
votes
7answers
177 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 …
5
votes
7answers
208 views
Why is System.Math and for example MathNet.Numerics based on double?
All the methods in System.Math takes double as parameters and returns parameters. The constants are also of type double. I checked out MathNet.Numerics, and the same seems to be th …
0
votes
5answers
78 views
crafting a class representing a fraction
what are some of the things i need to consider when designing this object
this is all i can think of
int nominator
int denominator
int sign
this object can be used in a math ope …
0
votes
1answer
34 views
How to include math Symbols in Editor or Textbox ..
hi
I have to include math symbols in my asp.net
so whatever the symbols it may be sigma , integral , pie etc..or any
how to write or display the Symbols in asp.net it should …
0
votes
3answers
60 views
Calculating bounding box a certain distance away from a lat/long coordinate in Java
Given a coordinate (lat, long), I am trying to calculate a square bounding box that is a given distance (e.g. 50km) away from the coordinate. So as input I have lat, long and dist …
1
vote
4answers
56 views
Transforming captured co-ordinates into screen co-ordinates
Hi everyone. I think this is probably a simple maths question but I have no idea what's going on right now.
I'm capturing the positions of "markers" on a webcam and I have a list …
0
votes
1answer
24 views
How to do bit-wise zero-filling right shift in Scheme?
According to here, arithmetic-shift will bit-shift left and right. The right shift preserves the sign. Is there any unsigned right-shift operator, which fills the vacated bits with …
1
vote
3answers
59 views
Can I interpolate rotation from two Quaternions created from Yaw/Pitch/roll?
Quaternions are good for interpolate rotations between them. so far so good.
If I have a networking game, will it suffice to transfer the rotation as vector3f or should I use a qu …
0
votes
6answers
130 views
Matrix Inversion
I'm developing a program for class that reads a matrix and then prints it with an identity matrix. Then step by step I have to reduce it into its identity matrix while applying the …
