📄 dspf_q15tofl.h
字号:
/* ======================================================================== */
/* TEXAS INSTRUMENTS, INC. */
/* */
/* NAME */
/* DSPF_q15tofl -- Q15 format to Single Precision IEEE floating point */
/* format */
/* */
/* USAGE */
/* */
/* This routine is C Callable and can be called as: */
/* */
/* void DSPF_q15tofl(const short *x, float * restrict r, int nx); */
/* */
/* x : Input array containing shorts in Q15 format */
/* r : Output array containing equivalent floats */
/* nx : Number of values in the x vector */
/* */
/* */
/* DESCRIPTION */
/* */
/* This routine converts data in the Q15 format into IEEE Single */
/* Precision floating point. */
/* */
/* */
/* ------------------------------------------------------------------------ */
/* Copyright (c) 2003 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
#ifndef DSPF_Q15TOFL_
#define DSPF_Q15TOFL_ 1
void DSPF_q15tofl(const short * x, float * restrict r, int nx);
#endif
/* ======================================================================== */
/* End of file: dspf_q15tofl.h */
/* ------------------------------------------------------------------------ */
/* Copyright (C) 2003 Texas Instruments, Incorporated. */
/* All Rights Reserved. */
/* ======================================================================== */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -