dspf_q15tofl.h
来自「详细的OFDM设计过程」· C头文件 代码 · 共 41 行
H
41 行
/* ======================================================================== */
/* 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 + =
减小字号Ctrl + -
显示快捷键?