number 622.08E6 interpretation in C

ε祈祈猫儿з 提交于 2019-12-11 12:38:29

问题


I recently came across a C code (working by the way) where I found

freq_xtal = ((622.08E6 * vcxo_reg_val->hiv * vcxo_reg_val->n1)/(temp_rfreq));

From my intuition it seems that 622.08E6 should mean 622.08 x 10^6. Is this assumption correct?

I tried googling for a similar example where E notation is used in a C program. Surprisingly couldn't find any result


回答1:


Yes, that is correct. It works just like an old-school scientific calculator.

In this case, it looks like you're dealing with a 622.08MHz signal and a VCOX on a PLL?



来源:https://stackoverflow.com/questions/19781570/number-622-08e6-interpretation-in-c

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!