📄 math_lib.h
字号:
/*************************************************************************
*
* The following code was hand optimized for the Texas Instuments
* TMS320C5x DSP by DSPCon, Inc. For information, please contact DSPCon
* at:
*
* DSPCon, Inc.
* 380 Foothill Road
* Bridgewater, New Jersey 08807
* (908) 722-5656
* info@dspcon.com
* www.dspcon.com
*
*************************************************************************/
/*
math_lib.h Math include file.
(Log and Divide functions.)
Copyright (c) 1997 by Texas Instruments, Inc. All rights reserved.
*/
#ifndef _math_lib_h
#define _math_lib_h_
/* External function definitions */
Shortword divider(Shortword numer, Shortword denom, Shortword numer_shift,
Shortword denom_shift);
Shortword L_divider2 (Longword numer, Longword denom, Shortword numer_shift,
Shortword denom_shift);
Shortword log10_fxp(Shortword x, Shortword Q);
Shortword L_log10_fxp(Longword x, Shortword Q);
Shortword pow10_fxp(Shortword x, Shortword Q);
Shortword sqrt_fxp (Shortword x, Shortword Q);
Shortword L_sqrt_fxp(Longword x, Shortword Q);
Shortword L_pow_fxp(Longword x,Shortword power,Shortword Q_in,Shortword Q_out);
Shortword sin_fxp(Shortword x);
Shortword cos_fxp(Shortword x);
Shortword acos_fxp(Shortword x);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -