The accuracy-problems tag has no wiki summary.
1
vote
1answer
110 views
How to calculate numbers to arbitrarily high precision?
I wrote a simple fortran program to compute Gauss's constant :
program main
implicit none
integer :: i, nit
double precision :: u0, v0, ut, vt
nit=60
u0=1.d0
v0=sqrt(2.d0)
print *,1.d0/u0,1.d0/v0
...
1
vote
0answers
17 views
Best approach to implement an accurate recorded stream execution
I have a stream of events recorded (for example an ArrayList<InputEvent> sorted by InputEvent.getWhen()). Differences in time between consecutive events can be of the order of tens of ...
1
vote
0answers
41 views
Cant get the right number of items in listview while working with groups
I have a list that copy itself to another list using clone(),
the problem is that when I'm trying to get the count from the list that I cloned, It grows by 1, but in fact , I added the item to the ...
1
vote
0answers
78 views
Output giving garbage value
Below i am pasting a source code of c++ program,My source code has to do simple input and out put operations on classes but when i compile the program class book output is coming right but class tape ...
0
votes
0answers
7 views
AVMetadataFaceObject Precision
I'm trying to use the AVMetadataFaceObject to get the yaw and roll of a face in a video. From what I can tell, the precision of the yaw is in increments of 45 degrees and the roll is in increments of ...
0
votes
0answers
25 views
JQuery gallery size complication
Gallery one shows fine, but when I go to switch which list is visible I get a small scrollbar. I want it to show like the first that's loaded. Can anyone help?
Here's the code whole code...
...
0
votes
0answers
39 views
Are there better HTML5 methods for setInterval?
I want my JavaScript code to run a function every second. Therefore I use setInterval by 1000 milliseconds. I've read that there are high resolution timers with HTML5 and methods like setImmediate. Is ...
0
votes
0answers
81 views
measure acuracy of a train model with easy.py from libsvm
I am running the example (heart_scale) of easy.py from libsvm.
I execute:
python easy.py heart_scale heart_scale (same data for train and test)
easy.py generates the next output:
Scaling ...
0
votes
0answers
241 views
playing wav files in matlab-
I have wav files that I want to play- I read them using wavread, and play them using sound or play(audioplayer).
my problem is that for this assignment precision is important, and some how my files ...