Re: scaling coefficients for c
- From: Joe Wright <joewwright@xxxxxxxxxxx>
- Date: Thu, 21 Sep 2006 18:31:40 -0400
Tom St Denis wrote:
sonos wrote:The semicolon. That's 'float myfirstfloat = 0.58642;'.Hi,
I understand the requirement of scaling coefficients for fixed point
microcontrollers. However, I cannot seem to get past a simple issue... How
do I code a fraction in binary form for use in c code or asm language?
for example, consider the fraction in base 10:
dec == 0.58642
and the same fraction in binary
bin == 0.1001011
and the same fraction in hex
0.961F9F01C
but how do I set a c variable in binary form for fractions?
Why would you? It'd only be in the source, so do a one time conversion
to decimal and be done with.
float myfirstfloat = 0.58642.
???
Am I missing something here?
Tom
--
Joe Wright
"Everything should be made as simple as possible, but not simpler."
--- Albert Einstein ---
.
- References:
- scaling coefficients for c
- From: sonos
- Re: scaling coefficients for c
- From: Tom St Denis
- scaling coefficients for c
- Prev by Date: Re: Help me
- Next by Date: Re: Why pointers??
- Previous by thread: Re: scaling coefficients for c
- Next by thread: Re: scaling coefficients for c
- Index(es):
Relevant Pages
|