The MASM Forum

General => The Campus => Topic started by: jalvarado on May 31, 2012, 02:34:52 PM

Title: logarithmic instructions in fpu
Post by: jalvarado on May 31, 2012, 02:34:52 PM
can anybody bring me information and examples of logarithmic  instructions in floating point unit (FPU)
Title: Re: logarithmic instructions in fpu
Post by: dedndave on May 31, 2012, 02:51:48 PM
Ray's library and tutorial...

http://www.ray.masmcode.com/fpu.html (http://www.ray.masmcode.com/fpu.html)
Title: Re: logarithmic instructions in fpu
Post by: jalvarado on June 09, 2012, 02:52:51 AM
thanks is very useful.  :icon14: anyone can bring me more especific examples of using  logarithmic  instructions in fpu??
Title: Re: logarithmic instructions in fpu
Post by: dedndave on June 09, 2012, 02:59:09 AM
what are you trying to do ?

many times, log values are converted to log base 2, "worked" on, then converted back
so - one of the first things you might want to learn would be converting logs between bases

logb(a) = logc(a) / logc(b)
Title: Re: logarithmic instructions in fpu
Post by: RuiLoureiro on June 09, 2012, 03:11:12 AM
Quote from: jalvarado on June 09, 2012, 02:52:51 AM
thanks is very useful.  :icon14: anyone can bring me more especific examples of using  logarithmic  instructions in fpu??
What do you mean with "more especific examples" ?
              What do you mean with "using logaritmic instructions" ?
              What do you want to do ?
Title: Re: logarithmic instructions in fpu
Post by: jalvarado on June 09, 2012, 03:31:46 AM
so im trying to find another example like this http://www.ray.masmcode.com/tutorial/fpuchap13.htm , to understand the logic of the program using  logarithmic  instructions
Title: Re: logarithmic instructions in fpu
Post by: dedndave on June 09, 2012, 03:36:45 AM
Rui is a good guy to help you, here
he has recently been doing a lot with logs and the FPU
Title: Re: logarithmic instructions in fpu
Post by: jalvarado on June 09, 2012, 03:48:37 AM
Ok thanks.

Rui, Can you help me?
Title: Re: logarithmic instructions in fpu
Post by: qWord on June 09, 2012, 04:10:03 AM
What did you not understand: the mathematics or it's implementation?
Title: Re: logarithmic instructions in fpu
Post by: RuiLoureiro on June 09, 2012, 04:15:13 AM
Quote from: jalvarado on June 09, 2012, 03:31:46 AM
so im trying to find another example like this http://www.ray.masmcode.com/tutorial/fpuchap13.htm , to understand the logic of the program using  logarithmic  instructions

Hi jalvarado,
           Sorry but the best person to explain that example is the author
           Raymond.

           Meanwhile one simple problem can be this: how do you know the
exponent y if you know z and x and the equation z=x^y ?
Title: Re: logarithmic instructions in fpu
Post by: jalvarado on June 09, 2012, 04:20:11 AM
Quote from: qWord on June 09, 2012, 04:10:03 AM
What did you not understand: the mathematics or it's implementation?

it's implementation
Title: Re: logarithmic instructions in fpu
Post by: qWord on June 09, 2012, 04:32:03 AM
Quote from: dedndave on June 09, 2012, 02:59:09 AMlogb(a) = logc(a) / logc(b)
fld FP8(0.301029995663981) ; 1/log2(10)
fld FP8(0.001) ; test value = 10^-3
fyl2x
fstp realVar ; = log(0.001) = log2(0.001)/log2(10) = -3

;OR: log(x) = log10(2)*log2(x)
fldlg2
fld FP8(0.001)
fyl2x
fstp realVar
Title: Re: logarithmic instructions in fpu
Post by: RuiLoureiro on June 09, 2012, 06:14:59 AM
jalvarado,
Based on logb(a) = logc(a) / logc(b) given by Dave,

dont forget this 2 important formulas:

            log10(x)= log2(x). (1/log2(10))

            ln(x)      = log2(x). (1/log2(e))

If we have y=(e^x-e^-x)/2, to find x=f(y) we need to use logarithms.