|
Hi,
(1) I have met several cases where epsilon is added to a non-negative variable to guarantee nonzero value. So I wonder why not add the minimum value that the data type can represent instead of epsilon? What are the difference problems that these two...
Started by Tim on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In the case of double precision, the difference between the maximum and the next, there is no strict answer, it depends....
It depends on the precision of the floating point number of course.
Is actually 1e-16 while the second is approx 1e+11.
|
|
I'm using long double in a C program to compute 2D images of the Mandelbrot Set but wish to have further precision to zoom deeper.
Are there any performance gains to be had from an arbitrary precision maths library that can restrict the amount of precision...
Started by James Morris on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you need more precision, see qd at http.
This wiki article contains links to several libraries.
|
|
Ever since Precision X was released many have been requesting a smaller skin (myself included). The interface became much larger than the previous iterations of Precision we'd grown accustomed to. For those who had used MSI AfterBurner the jump in size...
Started by vernacular on
, 12 posts
by 8 people.
Answer Snippets (Read the full thread at evga):
If you want to fiddle with my Precision skins I can.
I did not use the default precision password.
|
Ask your Facebook Friends
|
Is there a way to alter the precision of an existing decimal column in Sql Server?
Started by Andy J on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I haven't done any testing ....
You will have to modify your decimal(precision, scale) replacing the precision and scale with your desired values.
In the properties at the bottom there is a precision property
None that I'm aware of.
|
|
Precision loss is one thing, but precision gain???
I have a text file w/ the following coordinates:
41.88694340165634 -87.60841369628906
When I paste this into SQL Server Mgmt Studio table view, it results in this:
41.886943401656339 -87.6084136962890...
Started by Scott on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It's not adding precision to decimal, it only LOOKS like it gained precision..
Remember that floats are all approximate anyway.
Be stored in the db.
|
|
What programming languages support arbitrary precision arithmetic and could you give a short example of how to print an arbitrary number of digits?
Started by Matt Gregory on
, 11 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
Arbitrary precision....
Python-precision
From the article:
from math import log as _flog def log(x): if x < 0: return, the python quick start tutorial discusses the arbitrary precision: http://docs.python.org/lib/decimal be "%d\n".
|
|
Hello
I have two questions
1- what is the "11pt average precision metric"?
2- and how to use it in information retrieval?
Thanks
Started by ahmed on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Precision....
As far as I can see 11 point average precision is an evaluation of how well to Information Retrieval
and there is a reference to 11-point interpolated average precision use, you have precision and recall.
Defined terms.
|
|
What's the best way to trim a DateTime object to a specific precision? For instance, if I have a DateTime with a value of '2008-09-29 09:41:43' and but I only want it's precision to be to the minute, is there are a better way to do it than this?
private...
Started by Lloyd Cotten on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
DateTime TrimDate(DateTime date, DateTimePrecision precision) { switch (precision) { case.
|
|
The .NET framework's Math functions mostly operate on double precision floats, there are no single precision (float) overloads. When working with single precision data in a high performance scenario this results in unnecessary casting and also calculating...
Answer Snippets (Read the full thread at stackoverflow):
And you are correct, if implemented right, they can be much faster than ... .
Microsoft's implementation of the CLI) performs optimizations for single-precision arithmetic single precision floating point computations if that's all you need.
|
|
I am trying to populate a string with the double value using a sprintf like this sprintf(S, "%f", val); But the precision is being cut of to 6 decimal places. I need about 10 decimal places for the precision.
Kindly tell me how that can be achieved.
Started by AJ on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
%8.2 means 8.
%[width].[precision]
Width should include the decimal point.
On format specifiers.
|