Skip to content
Snippets Groups Projects
Commit d40a0b04 authored by baewoojin's avatar baewoojin
Browse files

Update README.md

parent 9e9b0922
No related branches found
No related tags found
No related merge requests found
...@@ -185,14 +185,14 @@ ...@@ -185,14 +185,14 @@
~~~ ~~~
(fixed32)((fa * fb) >> FX32_QNUM ) (fixed32)((fa * fb) >> FX32_QNUM )
~~~ ~~~
- fuction that multiplies fa and fb and divides it by 2^32 - 1. fuction that multiplies fa and fb and divides it by 2^32
- fx32_mul1 - fx32_mul1
~~~ ~~~
((fixed32)(((fa>>16) * fb)>>16)) ((fixed32)(((fa>>16) * fb)>>16))
~~~ ~~~
- Same as fx32_mul, the same fuction as fa*fb>>32, first multiply fa/2^16 and fb, and divide the remaining 2^16 - 1. Same as fx32_mul, the same fuction as fa*fb>>32, first multiply fa/2^16 and fb, and divide the remaining 2^16
- fx32_mul2 - fx32_mul2
~~~ ~~~
((fixed32)(((fa>>8)*(fb>>8))>>16)) ((fixed32)(((fa>>8)*(fb>>8))>>16))
~~~ ~~~
- Same as above, the same fuction as fa*fb>>32, first multiply fa/2^8, fb/2^8, and divide the remaining 2^16 - 1. Same as above, the same fuction as fa*fb>>32, first multiply fa/2^8, fb/2^8, and divide the remaining 2^16
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment