⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nspconv.h

📁 利用intel dsplib 库函数进行特定2FSK信号(需传导频)解调
💻 H
字号:
/*M*
//
//               INTEL CORPORATION PROPRIETARY INFORMATION
//  This software is supplied under the terms of a license agreement or
//  nondisclosure agreement with Intel Corporation and may not be copied
//  or disclosed except in accordance with the terms of that agreement.
//        Copyright (c) 1995 Intel Corporation. All Rights Reserved.
//
//      $Workfile: nspconv.h $
//      $Revision: 3 $
//      $Modtime: Dec 16 1996 4:22p $
//
//  Purpose: NSP Convolution
*M*/
#ifdef __cplusplus
extern "C" {
#endif
#if !defined (_NSPCONV_H) || defined (_OWN_BLDPCS)
    #define _NSPCONV_H
/*-------------------------------------------------------------------------*/
/*         Conv                                                            */
/*                                                                         */
/* Performs finite, linear convolution of two sequences.                   */

    NSPAPI(void,nspsConv, (const float  *x, int xLen,
                           const float  *h, int hLen, float  *y))

    NSPAPI(void,nspcConv, (const SCplx  *x, int xLen,
                           const SCplx  *h, int hLen, SCplx  *y))

    NSPAPI(void,nspdConv, (const double *x, int xLen,
                           const double *h, int hLen, double *y))

    NSPAPI(void,nspzConv, (const DCplx  *x, int xLen, 
                           const DCplx  *h, int hLen, DCplx  *y))

    NSPAPI(void,nspscConv,(const float  *x, int xLen,
                           const SCplx  *h, int hLen, SCplx  *y))

    NSPAPI(void,nspcsConv,(const SCplx  *x, int xLen, 
                           const float  *h, int hLen, SCplx  *y))

    NSPAPI(void,nspdzConv,(const double *x, int xLen, 
                           const DCplx  *h, int hLen, DCplx  *y))

    NSPAPI(void,nspzdConv,(const DCplx  *x, int xLen, 
                           const double *h, int hLen, DCplx  *y))

    NSPAPI(void,nspwConv, (const short  *x, int xLen, 
                           const short  *h, int hLen, short  *y,
                           int     scaleMode,   int    *scaleFactor))

#endif                                  /* _NSPCONV_H                      */
#ifdef __cplusplus
}
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -