-1
votes
1answer
92 views
Floating point exception on a int Array - C
int check_row;
for (n=0; n<9; n++) {
used_numbers[n] = n+1;
}
for (row=0; row<3; row++) {
for (check_row=0; check_row<3; check_row++) {
…
3
votes
5answers
164 views
Test if point is in some rectangle
I have a large collection of rectangles, all of the same size. I am generating random points that should not fall in these rectangles, so what I wish to do is test if the generated point lies in one …
0
votes
2answers
42 views
Bézier curve compute point from one axis
I have a Cubic Bézier curve. But I have a problem when I need only one point. I have only value from the X-axis and want to find a value that coresponds to Y-axis to that point. Or find the t step, …
2
votes
3answers
50 views
Get polygons close to a lat,long in MySQL
Hi,
does anyone know of a way to fetch all polgons in a MySQL db within a given distance from a point. The actual distance is not that important since it's calculated for each found polygon later, …
0
votes
1answer
54 views
Getting mount point when a USB device is inserted Mac OS X and linux
Hi All,
I am trying to develop a program in Mac OS and Linux which lists the files and folders in USB drive. I need to get the some events when USB device is connected and removed. I know that in Mac …
0
votes
2answers
30 views
7 Point computational stencil cache access problem in C (or..map a 3D array into a 1D array)
Hi all, I have a problem I am trying to tackle that involves a 7 point computational stencil. For those who may not know, this would be a 3D grid, and the 7 points are the n'th point, and the …
1
vote
2answers
173 views
Creating an entry point in a C# DLL to call from WIX
Good Afternoon,
I am trying to find a way to create an entry point for my C# dll. I am aware of how to call other dlls in c# but cannot find create one. I need this in order to call it in my WiX …
0
votes
0answers
12 views
Display 3 lists in one data view (sharepoint)
Hi all,
I would like to display tree different lists in one view in sharepoint.
1) Project_list: here I have all projects
2) Project_list_Costs: here I have all costs for each project (project …
1
vote
1answer
56 views
Insert a point into a finite 2D region with maximum distance to existing points.
I have a set of 2D points inside a finite 2D region of space (let's say a world-aligned rectangle to keep things simple for now). What would be an exceedingly efficient way to insert a new point into …
0
votes
0answers
18 views
Some questions about Function point
Hi,
I try to learn how to use Function Point analysis, however, there are questions that i can't answer. Hopefully, stackoverflow and you guys out there can help me answer those questions.
…
0
votes
6answers
109 views
In floating point is 0.1 the same as 1/10? [closed]
Possible Duplicate:
Why can’t decimal numbers be represented exactly in binary?
I am told that the floating point representation of 1/10 may be different from that of 0.1 ... can …
4
votes
9answers
206 views
Algorithm for spread-out 2D point distribution
In a 2D pixel array, I need an efficient algorithm that will select p% of pixels that are the most spread out.
This can be done adaptively by selecting points, then repeatedly adjusting the positions …
2
votes
5answers
231 views
double type digits in C++
The IEE754 (64 bits) floating point is supposed to correctly represent 15 significant digit although the internal representation has 17 ditigs. Is there a way to force the 16th and 17th digits to zero …
0
votes
3answers
60 views
Add a decimal point 2 chars from the right under PHP
I have a big array containing lots of elements containing numerical data.
Example:
3200
34300
1499
12899
I want to convert these into:
32.00
343.00
14.99
128.99
How can I achieve this elegantly …
0
votes
3answers
143 views
Reading floating numbers from sqlite database in iphone
I need to read floating point decimals from sqlite db
I have created Variable type in database as INTEGER
i am reading with sqlite3_column_int to NSInteger variables
which parts should changed so …
