Tagged Questions
The real tag has no wiki summary.
3
votes
4answers
137 views
can I compare two fractions if both have denominator with power of 2
I know it's not "possible" to compare two real, but is it true for real which have denominator power of 2
Is equality of this king always return true
if( 3/4. == 6/8. ) {}
2
votes
1answer
39 views
postgresql do not return values on specific numeric criterias
I have a postgresql database which look like the following :
+---------------+---------------- ------+------------ ---+
| id (bigint) | name (varying(255)) | price (real) |
...
2
votes
2answers
168 views
simultaneous inverse fast fourier transform of two real functions
I'm trying to calculate the inverse Fourier Transform of two real functions with a single IFFT. The best and most straightforward explanation I've found so far is here, where it says:
Use the fact ...
2
votes
1answer
282 views
How do I convert a decimal number to REAL10 in MASM assembly?
Right now I convert the string containing the decimal number to an integer (ignoring the radix point for now), load it into ST(0), and divide by the correct power of ten to account for the radix ...
1
vote
1answer
53 views
Optimization of a linear real valued function of real variables, subject to constraints
I have a set of real variables (and functions) { c_1, c_2, c_3, c_4 }, where c_3 and c_4 are independent ones, and c_1, c_2 are the functions of c_3, c_4:
c_1 = f_1( c_3, c_4 )
c_2 = f_2( c_3, c_4 )
...
1
vote
1answer
130 views
get real bounds of QuadCurve2D in java
i want to know how to get the bounds of an QuadCurve2D, searching i found an
method to get the bounds from a CubicCurve2D
Using this methods is possible to change it to use QuadCurve2D?
private ...
1
vote
7answers
616 views
Drawing real coordinates
i've encountered a little problem that i can't find answer to, so i hope to find someone here to help me.
So this is the problem. I have a buffer with real numbers (float) that i need to draw on my ...
1
vote
4answers
806 views
how-to do Crossplatform transparent windows in c++?
I'm woundering how to make a window transparent, not cutout holes or the same transparency overall.
Well, just say I wanna slap a PNG-picture of a rose or something and have it blend nicely with ...
1
vote
1answer
783 views
postfix 'd+0' in Fortran real literal expressions
Does anyone knwow what the postfix "d+0" means in the assignments to M1, M2 and M4 below or is there any resource on the web or a book where one is very likely to find this information?
...
1
vote
6answers
2k views
Precision of reals through writeln/readln in Delphi
My clients application exports and imports quite a few variables of type real through a text file using writeln and readln. I've tried to increase the width of the fields written so the code looks ...
0
votes
1answer
90 views
C#/QML types convertion (double/real/float)
my C# project is reading some configurations from a QML file.
The thing is that i'm not sure about some convertions...
QML C#
int <-> int
string <-> string
bool <-> ...
0
votes
0answers
41 views
Connection pool singleton - Spring config candidate?
GenericObjectPool connectionPool = new GenericObjectPool(null);
ConnectionFactory connectionFactory =
new DriverManagerConnectionFactory(
properties.getProperty("dbVendor"),
...
0
votes
1answer
81 views
Truncate a “real” value in a Text field?
I got the follow code :
property real compassValue : 3.1415927895412
Text {
text: "<b>" + compassValue + "°</b>"
}
The fact is that I only want to display "3.14". Is there a way to ...
0
votes
1answer
178 views
Android: how to sum real values from Sqlite?
I've got the following code to get a sum of real values (debt amounts stored in an SQlite DB:
public double getsumdebt() {
Cursor mCursor = db.rawQuery("SELECT SUM(CurrentAmount) FROM ...
0
votes
1answer
272 views
SQL server real field converts my numbers into normal format
I store some numbers in a 'real' type field.
I insert/read values to/from it from my c# application using ADO.net. When I query my data in Server Management Studio I can see it converts my numbers ...
0
votes
3answers
309 views
boost::random and boost:uniform_real works with doubles not with floats?
Pardon me if this has been discussed already. I've got a template function which uses boost::uniform_int and boost::uniform_real depending on the template argument and should return the same type:
...
0
votes
0answers
116 views
NoMethodError on Mocking Real Object in RSpec
everyone. I have a class that uses OptionParser to parse command line options and return a hash containing the options. In the case of "-h" for help, I want to verify (using rspec 2.6.4) that my ...
0
votes
1answer
686 views
iPhone Simulator providing location results
CONTEXT:
So I am using iOS SDK 4.2 and followed this tutorial:
http://mobileorchard.com/hello-there-a-corelocation-tutorial/
and got some GPS logs happening on the console using both iPhone and ...
0
votes
1answer
302 views
C# double to real
i am trying to convert double to pascal real but when i convert 0.23 to real i got 0.23999999 real how can i truncate all 9999 to 0000.
public static byte[] Double2Real48(double d)
{
byte[] r48 = ...
0
votes
2answers
1k views
DateTime to Single with C#
I'm trying to build an interface between iTunes e MediaMonkeys. When I imported my tracks from iTunes to MM, the field LastPlayed wasn't considered.
So I decided to build an interface that reads the ...
-1
votes
2answers
166 views
Flex real type definition in scientific and engineering notation in c++
I'm defining a real type and I'm using strtod for the exponential way even though is untested and don't really know if it works but more imporantly I would like to know if there is any built in ...