Tagged Questions
Accuracy is a measure of the closeness to a specific value. The distance of the measure from the value is the error. Accuracy differs from precision, in that precision is a measure of repeatability of a result.
24
votes
7answers
30k views
System.currentTimeMillis vs System.nanoTime
Accuracy Vs. Precision
What I would like to know is whether I should use System.currentTimeMillis() or System.nanoTime() when updating my object's positions in my game? Their change in movement is ...
16
votes
4answers
15k views
How accurate is python's time.sleep()?
I can give it floating point numbers, such as
time.sleep(0.5)
but how accurate is it? If i give it
time.sleep(0.05)
will it really sleep about 50 ms?
13
votes
9answers
939 views
Which is more accurate, x**.5 or math.sqrt(x)?
I recently discovered that x**.5 and math.sqrt(x) do not always produce the same result in Python:
Python 2.6.1 (r261:67517, Dec 4 2008, 16:51:00) [MSC v.1500 32 bit (Intel)]
on win32
>>> ...
10
votes
4answers
471 views
Maintaining Floating Point Accuracy with a Running Average
I need to calculate the mean-squared error of a 16-bit operation for an arbitrary number of data points (upwards of 100 million). I decided to go with a running average so I wouldn't have to worry ...
9
votes
4answers
3k views
How is location accuracy measured in Android?
Does anyone know the proper interpretation of the accuracy measurements returned by getAccuracy()? For instance, are they calculated as:
Circular Error Probability (meaning, if i understand ...
8
votes
2answers
460 views
How to test if a string contains gibberish in PHP?
I am making a registering form for a website and because I'm sure everyone
is going to enter some gibberish in the Secret Answer's input (I do that myself),
I would like to programmatically test that ...
7
votes
1answer
126 views
Casting a large number type to a smaller type
I've had a good look around and can't find a similar question so apologies if it has been asked before.
I'm just playing around with types and numbers and I am wondering if the following behaviour ...
6
votes
6answers
1k views
Log with timestamps that have millisecond accuracy & resolution in Windows C++
I'm aware that for timing accuracy, functions like timeGetTime, timeBeginPeriod, QueryPerformanceCounter etc are great, giving both good resolution & accuracy, but only based on time-since-boot, ...
5
votes
4answers
106 views
Thread priority and Thread accuracy
Will Thread priority increases accuracy of Thread.sleep(50);?
As we know Threads aren't accurate when you call sleep for 50ms, But does it increases accuracy by any mean? If thread is listed as ...
5
votes
7answers
507 views
How deal with the fact that most decimal fractions cannot be accurately represented in binary?
So, we know that fractions such as 0.1, cannot be accurately represented in binary base, which cause precise problems (such as mentioned here: ...
5
votes
7answers
10k views
How accurate is Android GPS?
I thought I have read somewhere that the accuracy of Android's GPS is about 10cm?
Can anyone verify or correct this? Reason being is that my application I am trying to develop keeps track of ...
5
votes
8answers
2k views
How accurate is Thread.Sleep(TimeSpan)?
I've come across a unit test that is failing intermittently because the time elapsed isn't what I expect it to be.
An example of what this test looks like is:
Stopwatch stopwatch = new Stopwatch();
...
4
votes
1answer
46 views
How accurate are CSS's real-world units?
I'm beginning experiments with CSS' real-world units, specifically, in and cm, for purposes of printing.
Are these units based on how they will be displayed on-screen or how they will be printed by a ...
4
votes
3answers
1k views
Android Location.getAccuracy() returns 1
I'm trying to get my current GPS accuracy by using Location.getAccuracy(). However, this is returning 1 (or sometimes 2) which doesn't seem possible. Google maps is telling me my current location ...
4
votes
4answers
136 views
How to make sure the GPS position sent to the server are accurate?
here is my problem :
I have a mobile app, and I want to give the user some information depending on their position ( think something like FourSquare ). But how to make sure the user position is ...
4
votes
3answers
2k views
decoding the CLLocationAccuracy const's
the following are listed in CLLocation.h but from my experience they are deceiving names- possibly originally thought up to serve two purposes, 1. to test the accuracy of the location returned, but ...
4
votes
4answers
576 views
How reliable are .net timers?
I'm looking at using a System.Timers.Timer in a windows service. I would like to know how reliable and accurate they are. In particular:
Are there any guarantees about how often they will run?
...
4
votes
5answers
444 views
What units of measure would you store engineering data in?
In our app, we currently live with the legacy of a decision to store all engineering data in our database in SI.
I worry that we may run the risk of not having sufficient precision and accuracy in ...
3
votes
1answer
267 views
Tesseract how to improve speed in recognition and also accuracy?
I've seen that to limit scan error you can define a whitelist for characters.
But I couldn't find information for the bool numericMode in the ocr.Init(@"c:\temp", "fra", false);
Suppose you would ...
3
votes
2answers
98 views
Unusually low floating point accuracy when normalizing a vector
I have a short method in my code to normalize a vector (actually a PCL point) which produces results of low accuracy. The code:
void normalize(pcl::PointXYZ::PointXYZ * p){
float nf = ...
3
votes
2answers
186 views
What is the meaning of claims about clock precision/accuracy?
I've seen a lot of discussions of system clocks where it's said that e.g. standard PC clocks under e.g. Windows are precise only +/-10ms, whereas on a real time system clocks have submillisecond ...
3
votes
3answers
267 views
More accurate equivalent for “time” command in Linux, regarding sys- and usertime?
I am in the following situation:
I want to determine the sys- and usertime of little snippets of (PHP- and C++) code. Obviously, I could use the "time" binary in Linux, but given the fact that these ...
3
votes
4answers
742 views
SQL Server DATEDIFF accuracy
I have to store some intervals in mssql db. I'm aware that the datetime's accuracy is approx. 3.3ms (can only end 0, 3 and 7).
But when I calculate intervals between datetimes I see that the result ...
2
votes
1answer
71 views
threading.Timer time precision
What does the time accuracy of Python's threading.Timer depend on?
Does it depend on the OS used?
Does it depend on the Python implementation used?
Does it depend on the interval?
How can it be ...
2
votes
2answers
157 views
Location getAccuracy() what this function do?
I know that this function returns a float indicating the accuracy of a particular location. My question is: Is it right that greater the value returned by this function means more accurate the ...
2
votes
2answers
83 views
coarse-fine algorithms
Are there well-known algorithms to combine a coarse-resolution-with-high-absolute-accuracy measurement with a fine-resolution-with-low-absolute-accuracy measurement?
For example, a real-time-clock ...
2
votes
2answers
539 views
accuracy of long double sqrt()
I have noticed a problem with the accuracy of the long double version of sqrt(). The following code demonstrates the problem.
#include <iostream>
#include <cmath>
#include <cfloat>
...
2
votes
6answers
277 views
PHP sleep accuracy
I use the following code to see how long a user is on a particular page. I use a hidden image with a src attribute to this script:
$timer_seconds = 1;
while(!connection_aborted()) {
echo "\n";
...
2
votes
1answer
361 views
Accurate signal delay calculation in Python
I'm trying to calculate the lag between two signals in Python using cross correlation. The two signals are almost identical except for a very small timelag. I've tried numpy.correlate and ...
2
votes
1answer
304 views
Are the W3C geolocation API accuracy parameter in diameter or radius of your position?
Maybe i got my head around this wrong, after stfw i could not find any info on this. When the geolocation api returns your position with latitute, longitude and accuracy (p.coords.accuracy), does the ...
2
votes
0answers
463 views
Is android's motion event handling accurate?
Bug
I have a weird bug in my piano app. Sometimes keys (and thus notes) hang. I did a lot of debugging and narrowed it down to what looks like androids inaccuracy of motion event handling:
...
2
votes
3answers
1k views
How to change the default parameters for newfit() in MATLAB?
I am using
net = newfit(in,out,lag(j),{'tansig','tansig'});
to generate a new neural network. The default value of the number of validation checks is 6.
I am training a lot of networks and this ...
2
votes
5answers
248 views
Software estimation speed and accuracy
Let's say you have a project that will involve two web applications (that will share DAL/DAO/BO assemblies and some OSS libraries):
a semi complex management application that uses Windows Live ID ...
1
vote
0answers
50 views
Where can I get GEoIP lookup as good as adultFriendfinder
Firstly, I am not sure if this question is better suited for Programmer.se, or here. If it's a better fit for Programmer.se, please migrate it over there.
I am working on a website targeted towards ...
1
vote
1answer
37 views
Calculate integral with less accuracy using Matlab
I want to calculate a double integral over a rectangular region (-pi/2, pi/2)x(-pi/2, pi/2).
I used the int function:
double(int(int(...)));
The problem is that the running time was too long. But ...
1
vote
2answers
105 views
iPhone GPS Accuracy - Reading Changes eventhough Device is stationary
I am working on an app that is meant to calculate the distance traveled from starting point to end.
i have done all things to get the changing coordinates and measure the distance between this ...
1
vote
1answer
310 views
Very low accuracy while using open ears for speech recognition.
i'm using open ears for speech recognition in my app.The major concern is the accuracy.In a quite environment there is about 50% accuracy.But things get worse when we get to a noisy ...
1
vote
1answer
144 views
is there a better alternative to gps position tracking?
After doing some asking around and reading, it sounds like you're lucky to get even within 10 meters of accuracy with a GPS on a mobile device (specifically Android).
I've seen a video that shows a ...
1
vote
2answers
195 views
Is it possible to determine an iPhone or Android devices' location based on wifi signal strength?
I'm interested in finding out how well can a smartphone be oriented in a building based on the wifi strength in certain locations.
Wifi is becoming ubiquitous, at least in the western world, and if ...
1
vote
2answers
322 views
Accuracy of double precision multiplication in java?
What is the guaranteed accuracy of multiplication operator for double values in java?
For example, 2.2 * 100 is 220.00000000000003, but 220 is a double number. 220.00000000000003 is the next double ...
1
vote
1answer
187 views
iPhone CLLocationManager updates every 0.5 seconds
For an app that does lots of calculation from the GPS, I need to get the latitude/longitude and speed every 0.5 second to be very accurate and avoid delay.
I am using:
[locationManager ...
1
vote
1answer
463 views
Android google map accuracy issue
I am developing android version of an iPhone application. But, I found that in android, google map takes latitude E6 and longitude E6 integer values as GeoPoint argument.
As a result, whenever I have ...
1
vote
1answer
291 views
Accuracy is always 0 in SENSOR_ACCELEROMETER (Android)
I'm programming a application that needs to get data from the accelerometer sensor.
I have overwritten both onAccuracyChanged() and onSensorChanged() functions. It is suppoused that those functions ...
1
vote
4answers
426 views
More Accurate Tile Based Collision
First off, the player will be controlling a circular object.
Im trying to do collision in a tile based game. One of my problems is not all the tiles are square. They are all sorts of irregular shapes. ...
1
vote
1answer
93 views
What is the lowest time resolution for somewhat acurate measurements of cpu usage?
Some of the things I want to measure are very short,and I can only repeat them so many times if I don't run any of the setup/dispose code in the middle.
note: on linux,reading /proc/stat
1
vote
2answers
812 views
I'm having trouble getting accurate GPS locations from the Google Maps API for use on Android
We are developing an application for people to mark areas (single points, lines, and polygons) on Google Maps using Android phones (2.1 and up). They are given a Google Maps view and enter the points ...
1
vote
3answers
183 views
System.Timer elapsed event seems to fire late for short intervals in .Net
I am sampling a system over the UART port, and then logging the info in a file with a timestamp (including milliseconds). If I sample at 1 second intervals, the data comes back as ...
1
vote
2answers
138 views
Measuring Error Rates Between Rank-Order Lists
I'm trying to measure the agreement between two different systems of classification (one of them based on machine-learning algorithms, and the other based on human ground-truthing), and I'm looking ...
1
vote
2answers
356 views
Addition vs Subtraction in loss of significance with floating-points
While learning about precision in floating point arithmetic and different methods to avoid it (using a conjugate, taylor series,...) books frequently mention the subtraction of two very similar ...
1
vote
1answer
108 views
Practices to limit floating point accuracy problems
As programmers, most (if not all of us) know that floating point numbers have a tendency to not be very accurate. I know that this problem can't be avoided entirely, but I am wondering if there are ...