Tagged Questions
3
votes
5answers
782 views
Floating Point Subtraction in C results zero
I have a code wriiten in C which is intended for a 16-bit microcontroller.
The code essentially does lot of floating point arithmatic.
The arithmatic works fine till the result is positive; but in ...
2
votes
2answers
1k views
Implementing floating point subtraction
all I am trying to implement a floating point arithmetic library and I have trouble understanding the algorithm of subtracting floats. I have implemented addition succesfully and I thought that ...
0
votes
1answer
49 views
Subtracting float in android gives me larger number
I cannot figure this one out, but I cannot seem to get android to ever cooperate with simple math. I have created a ZoomControls that changes text size of a TextView. Seems simple. I increase the font ...
0
votes
2answers
160 views
Python subtracting floats
I have the following code embeded in a class.Whenever I run distToPoint it gives the error 'unsupported operand type(s) for -: 'NoneType' and 'float'' I don't know why it's returning with NoneType and ...