Tagged Questions

2
votes
3answers
46 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 o …
4
votes
6answers
221 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: http://stackoverflow.com/questions/14 …
0
votes
2answers
78 views

iPhone and floating point math

Hi, I have following code: float totalSpent; int intBudget; float moneyLeft; totalSpent += Amount; moneyLeft = intBudget - totalSpent; And this is how it looks i …
0
votes
3answers
146 views

Android GPS Accuracy

I believe I have read somewhere the accuracy of Android's GPS is about 10cm? Can anyone verify or correct this? My application I am trying to develop keeps track of locations an us …
2
votes
5answers
124 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 use …
0
votes
6answers
314 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 …
0
votes
1answer
112 views

Now() Accuracy in VBScript

Now() in VBScript appears to return time in 10,000,000th of a second precision when called as CDbl(Now()). In attempting to use this to write a more accurate implementation of now …
3
votes
4answers
1k 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?
0
votes
2answers
87 views

Accuracy of ZHEEV and ZHEEVD

I am using LAPACK to diagonalize complex Hermitian matrices. I can choose between ZHEEV and ZHEEVD. Which one of these routines is more accurate for matrices of the size 40 and a r …
3
votes
4answers
218 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 ofte …
9
votes
9answers
549 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 w …
4
votes
5answers
294 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 precisio …
5
votes
6answers
4k 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 cha …